Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/1.15.2/py3/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ENV SAGEMAKER_TRAINING_MODULE=sagemaker_tensorflow_container.training:main
# Define framework-related package sources
ARG FRAMEWORK_SUPPORT_INSTALLABLE=sagemaker_tensorflow_training*.tar.gz
ARG TF_URL=https://tensorflow-aws.s3-us-west-2.amazonaws.com/1.15.2/AmazonLinux/cpu/final/tensorflow-1.15.2-cp36-cp36m-manylinux2010_x86_64.whl
ARG SMDEBUG_URL=https://s3.amazonaws.com/kannanva-smdebug-0.7/smdebug-0.7.0b20200304-py2.py3-none-any.whl

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -99,7 +100,7 @@ RUN pip install --no-cache-dir -U \
keras_preprocessing==1.1.0 \
keras==2.3.1 \
requests==2.22.0 \
smdebug==0.5.0.post0 \
${SMDEBUG_URL} \
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there an estimate on when this change will be pushed to PyPI?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are targeting march 6

sagemaker-experiments==0.1.3 \
mpi4py==3.0.2 \
"cryptography>=2.3" \
Expand Down
3 changes: 2 additions & 1 deletion docker/1.15.2/py3/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ENV SAGEMAKER_TRAINING_MODULE=sagemaker_tensorflow_container.training:main
# Define framework-related package sources
ARG FRAMEWORK_SUPPORT_INSTALLABLE=sagemaker_tensorflow_training*.tar.gz
ARG TF_URL=https://tensorflow-aws.s3-us-west-2.amazonaws.com/1.15.2/AmazonLinux/gpu/final/tensorflow_gpu-1.15.2-cp36-cp36m-manylinux2010_x86_64.whl
ARG SMDEBUG_URL=https://s3.amazonaws.com/kannanva-smdebug-0.7/smdebug-0.7.0b20200304-py2.py3-none-any.whl

RUN apt-get update \
&& apt-get install -y --no-install-recommends --allow-unauthenticated \
Expand Down Expand Up @@ -136,7 +137,7 @@ RUN pip install --no-cache-dir -U \
keras_preprocessing==1.1.0 \
requests==2.22.0 \
keras==2.3.1 \
smdebug==0.5.0.post0 \
${SMDEBUG_URL} \
sagemaker-experiments==0.1.3 \
mpi4py==3.0.2 \
"cryptography>=2.3" \
Expand Down