Skip to content

Commit 129af7f

Browse files
committed
Move the default container base forward to Python 3.10
1 parent 97787bf commit 129af7f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

container/build_and_push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# machine and combined with the account and region to form the repository name for ECR.
55

66
prog=$0
7-
default_image="python:3.7-slim-buster"
7+
default_image="python:3.10-slim-bullseye"
88

99
function usage {
1010
echo "Usage: $1 [--base <base-image>] <image>"

sagemaker_run_notebook/container/build_and_push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# machine and combined with the account and region to form the repository name for ECR.
55

66
prog=$0
7-
default_image="python:3.7-slim-buster"
7+
default_image="python:3.10-slim-bullseye"
88

99
function usage {
1010
echo "Usage: $1 [--base <base-image>] <image>"

sagemaker_run_notebook/container_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
import sagemaker_run_notebook.utils as utils
2929

30-
default_base = "python:3.7-slim-buster"
30+
default_base = "python:3.10-slim-bullseye"
3131

3232

3333
def create_project(repo_name, role, zipfile, base_image=default_base):

0 commit comments

Comments
 (0)