Skip to content
Open
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 lambdas/ack_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

RUN mkdir -p /home/appuser && \
echo 'appuser:x:1001:1001::/home/appuser:/sbin/nologin' >> /etc/passwd && \
Expand Down
2 changes: 1 addition & 1 deletion lambdas/batch_processor_filter/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 mkdir -p /home/appuser && \
echo 'appuser:x:1001:1001::/home/appuser:/sbin/nologin' >> /etc/passwd && \
Expand Down
2 changes: 1 addition & 1 deletion lambdas/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 lambdas/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 lambdas/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 lambdas/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
Loading