We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffdc383 commit 062f344Copy full SHA for 062f344
1 file changed
Dockerfile
@@ -1,6 +1,6 @@
1
# syntax=docker/dockerfile:1
2
3
-# It's important that this is Debian 12 to match the distroless image.
+# It's important that this is Debian 13 to match the distroless image.
4
FROM debian:13-slim AS build
5
6
RUN --mount=type=cache,target=/var/lib/apt/lists \
@@ -31,7 +31,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
31
32
# Copy the function venv to our runtime stage. It's important that the path be
33
# the same as in the build stage, to avoid shebang paths and symlinks breaking.
34
-FROM gcr.io/distroless/python3-debian12 AS image
+FROM gcr.io/distroless/python3-debian13 AS image
35
WORKDIR /
36
COPY --from=build /venv/fn /venv/fn
37
EXPOSE 9443
0 commit comments