Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion delta_backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.11 AS base
FROM public.ecr.aws/lambda/python:3.13 AS base

# Create a non-root user with a specific UID and GID
RUN mkdir -p /home/appuser && \
Expand Down
2 changes: 1 addition & 1 deletion filenameprocessor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.11 AS base
FROM public.ecr.aws/lambda/python:3.13 AS base

# Create non-root user
RUN mkdir -p /home/appuser && \
Expand Down
2 changes: 1 addition & 1 deletion filenameprocessor/batch.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.11 as base
FROM public.ecr.aws/lambda/python:3.13 as base

RUN pip install "poetry~=2.1.4"

Expand Down
2 changes: 1 addition & 1 deletion mesh_processor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.11 AS base
FROM public.ecr.aws/lambda/python:3.13 AS base

# Create a non-root user with a specific UID and GID
RUN mkdir -p /home/appuser && \
Expand Down
2 changes: 1 addition & 1 deletion recordprocessor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.11 AS base
FROM public.ecr.aws/lambda/python:3.13 AS base

# Create a non-root user with a specific UID and GID
RUN mkdir -p /home/appuser && \
Expand Down
2 changes: 1 addition & 1 deletion temporary_sandbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.13-slim

# Install Poetry
RUN pip install poetry && groupadd -r appgroup && useradd -r -g appgroup appuser
Expand Down