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
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -26,7 +26,7 @@ COPY ./shared/src/common ./common
COPY ./ack_backend/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
25 changes: 5 additions & 20 deletions lambdas/ack_backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lambdas/ack_backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.13"
boto3 = "~1.42.74"
mypy-boto3-dynamodb = "^1.42.73"
freezegun = "^1.5.2"
Expand Down
2 changes: 1 addition & 1 deletion lambdas/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY ./shared/src/common ./common
COPY ./backend/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -26,7 +26,7 @@ COPY ./shared/src/common ./common
COPY ./batch_processor_filter/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
10 changes: 5 additions & 5 deletions lambdas/batch_processor_filter/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lambdas/batch_processor_filter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.13"
coverage = "^7.13.5"
aws-lambda-typing = "~2.20.0"
boto3 = "~1.42.74"
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -27,7 +27,7 @@ COPY ./shared/src/common ./common
COPY ./delta_backend/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
13 changes: 5 additions & 8 deletions lambdas/delta_backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lambdas/delta_backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.13"
boto3 = "~1.42.74"
mypy-boto3-dynamodb = "^1.42.73"
moto = "~5.1.22"
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -27,7 +27,7 @@ COPY ./shared/src/common ./common
COPY ./filenameprocessor/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
28 changes: 5 additions & 23 deletions lambdas/filenameprocessor/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lambdas/filenameprocessor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.13"
"fhir.resources" = "~7.0.2"
boto3 = "~1.42.74"
boto3-stubs-lite = { extras = ["dynamodb"], version = "~1.42.74" }
Expand Down
2 changes: 1 addition & 1 deletion lambdas/id_sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY ./shared/src/common ./common
COPY ./id_sync/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Build as non-root user
USER 1001:1001
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -27,7 +27,7 @@ COPY ./shared/src/common ./common
COPY ./mesh_processor/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
25 changes: 5 additions & 20 deletions lambdas/mesh_processor/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lambdas/mesh_processor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "~3.11"
python = "~3.13"
boto3 = "~1.42.74"
mypy-boto3-dynamodb = "^1.42.73"
moto = {extras = ["s3"], version = "^5.1.22"}
Expand Down
2 changes: 1 addition & 1 deletion lambdas/mns_publisher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ COPY ./shared/src/common ./common
COPY ./mns_publisher/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
2 changes: 1 addition & 1 deletion lambdas/recordforwarder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY ./shared/src/common ./common
COPY ./recordforwarder/src .

# Set correct permissions
RUN chmod 644 $(find . -type f) && chmod 755 $(find . -type d)
RUN chmod -R u=rwX,go=rX .

# Switch to the non-root user for running the container
USER 1001:1001
Expand Down
Loading
Loading