Skip to content

Commit

Permalink
Python upgraded to 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinXPN authored Dec 6, 2024
1 parent e8ddfb6 commit a939cc0
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bouncer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/c.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN dnf install -y gcc
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/cpp.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN dnf install -y gcc-c++ clang-tools-extra libasan
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/csharp.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN dnf install -y tar gzip findutils libicu
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/java.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN dnf install -y java-21-amazon-corretto-devel
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/js.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN rpm -ivh https://rpm.nodesource.com/pub_16.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/python.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/pythonML.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/sqlite.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion coderunners/lang/txt.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion sync/sync.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion sync/trigger.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

# Initial setup
RUN pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ Resources:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: python3.12-v1
DockerTag: python-v1
DockerContext: ./
Dockerfile: coderunners/lang/python.Dockerfile

Expand All @@ -454,7 +454,7 @@ Resources:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: python3ml.12-v1
DockerTag: python-ml-v1
DockerContext: ./
Dockerfile: coderunners/lang/pythonML.Dockerfile

Expand Down

0 comments on commit a939cc0

Please sign in to comment.