Skip to content
Merged
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
10 changes: 10 additions & 0 deletions Dockerfile.lambda
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ RUN --mount=from=uv,source=/uv,target=/bin/uv \

FROM public.ecr.aws/lambda/python:3.14

# Patch OS-level vulnerabilities (openssl, aws-lambda-rie).
# fix CVE-2026-2673.
RUN dnf upgrade -y openssl-libs openssl-fips-provider-latest && \
Comment thread
monodo marked this conversation as resolved.
dnf clean all && \
rm -rf /var/cache/dnf

# Update aws-lambda-rie to latest release to fix CVE-2026-32280.
ADD https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie-x86_64 /usr/local/bin/aws-lambda-rie
RUN chmod 755 /usr/local/bin/aws-lambda-rie

# Copy the runtime dependencies from the builder stage.
COPY --from=builder ${LAMBDA_TASK_ROOT} ${LAMBDA_TASK_ROOT}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "drillapi"
version = "0.1.2"
version = "0.1.12"
description = "drillapi"
authors = [{name = "SFOE", email = "geoinformation@bfe.admin.ch"}]
readme = "README.md"
Expand Down
Loading