We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf2686 commit bde42d3Copy full SHA for bde42d3
1 file changed
Dockerfile
@@ -1,5 +1,5 @@
1
2
-FROM python:3.9-slim as builder
+FROM python:3.11-slim as builder
3
4
RUN pip install uv
5
@@ -16,13 +16,11 @@ COPY requirements.txt .
16
RUN uv pip install -r requirements.txt
17
18
19
-FROM gcr.io/distroless/python3-debian11
20
-
+FROM gcr.io/distroless/python3-debian12
21
22
WORKDIR /app
23
24
25
-COPY --from=builder /usr/local/lib/python3.9/site-packages /app/packages
+COPY --from=builder /usr/local/lib/python3.11/site-packages /app/packages
26
27
28
COPY . .
0 commit comments