File tree 4 files changed +6
-20
lines changed 4 files changed +6
-20
lines changed Original file line number Diff line number Diff line change @@ -12,23 +12,9 @@ COPY model_zoo /model_zoo
12
12
RUN python -m pip install --quiet -r /model_zoo/requirements.txt \
13
13
--extra-index-url=${EXTRA_PYPI_INDEX}
14
14
15
- # Install elasticdl_preprocessing package
16
- COPY build/elasticdl_preprocessing-develop-py3-none-any.whl /
17
- RUN python -m pip install --quiet /elasticdl_preprocessing-develop-py3-none-any.whl \
18
- --extra-index-url=${EXTRA_PYPI_INDEX} \
19
- && rm /elasticdl_preprocessing-develop-py3-none-any.whl
20
-
21
- # Install elasticdl_client package
22
- COPY build/elasticdl_client-develop-py3-none-any.whl /
23
- RUN python -m pip install --quiet /elasticdl_client-develop-py3-none-any.whl \
24
- --extra-index-url=${EXTRA_PYPI_INDEX} \
25
- && rm /elasticdl_client-develop-py3-none-any.whl
26
-
27
- # Install elasticdl package
28
- COPY build/elasticdl-develop-py3-none-any.whl /
29
- RUN python -m pip install --quiet /elasticdl-develop-py3-none-any.whl \
30
- --extra-index-url=${EXTRA_PYPI_INDEX} \
31
- && rm /elasticdl-develop-py3-none-any.whl
15
+ # Install ElasticDL packages
16
+ COPY build/*.whl /
17
+ RUN pip install /*.whl --extra-index-url=${EXTRA_PYPI_INDEX} && rm /*.whl
32
18
33
19
# Add elasticdl_ps to system path
34
20
RUN /bin/bash -c \
Original file line number Diff line number Diff line change 24
24
25
25
setup (
26
26
name = "elasticdl" ,
27
- version = "develop " ,
27
+ version = "0.2.0rc3.dev0 " ,
28
28
description = "A Kubernetes-native Deep Learning Framework" ,
29
29
long_description = "ElasticDL is a Kubernetes-native deep learning framework"
30
30
" built on top of TensorFlow 2.0 that supports"
Original file line number Diff line number Diff line change 18
18
19
19
setup (
20
20
name = "elasticdl_client" ,
21
- version = "develop " ,
21
+ version = "0.2.0rc3.dev0 " ,
22
22
description = "The client command line tool for ElasticDL." ,
23
23
long_description = "ElasticDL Client is the client command line tool for"
24
24
" ElasticDL. Users can use it to submit distributed ElasticDL jobs to"
Original file line number Diff line number Diff line change 22
22
23
23
setup (
24
24
name = "elasticdl_preprocessing" ,
25
- version = "develop " ,
25
+ version = "0.2.0rc3.dev0 " ,
26
26
description = "A feature preprocessing library." ,
27
27
long_description = "This is an extension of the native Keras Preprocessing"
28
28
" Layers and Feature Column API from TensorFlow. We can develop our model"
You can’t perform that action at this time.
0 commit comments