Skip to content

Commit ffbd3f4

Browse files
shreyapanditmufaddal-rohawala
authored andcommitted
fix: Allow Py 3.7 for MMS Test Docker env (aws#3080)
Co-authored-by: Mufaddal Rohawala <[email protected]>
1 parent b5d0042 commit ffbd3f4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/data/multimodel/container/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM public.ecr.aws/ubuntu/ubuntu:18.04
1+
# added latest image from https://gallery.ecr.aws/lts/ubuntu
2+
FROM public.ecr.aws/ubuntu/ubuntu:22.04
23

34
# Set a docker label to advertise multi-model support on the container
45
LABEL com.amazonaws.sagemaker.capabilities.multi-models=true
@@ -15,7 +16,7 @@ RUN apt-get update && \
1516
curl \
1617
vim \
1718
&& rm -rf /var/lib/apt/lists/* \
18-
&& curl -O https://bootstrap.pypa.io/pip/3.6/get-pip.py \
19+
&& curl -O https://bootstrap.pypa.io/pip/get-pip.py \
1920
&& python3 get-pip.py
2021

2122
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1

0 commit comments

Comments
 (0)