We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce10cb commit 6347cebCopy full SHA for 6347ceb
Dockerfile
@@ -1,12 +1,12 @@
1
-FROM python:3.10-slim AS build-env
+FROM python:3.13-slim@sha256:201e1ab0af068a569a6b10fe680cb7532c17105e2e68d50aa33176350ab17c36 AS build-env
2
ADD . /app
3
WORKDIR /app
4
RUN pip install --upgrade pip
5
RUN pip install pipenv
6
RUN pipenv requirements > requirements.txt
7
RUN pip install --target=/app -r requirements.txt
8
9
-FROM python:3.10-slim
+FROM python:3.13-slim@sha256:201e1ab0af068a569a6b10fe680cb7532c17105e2e68d50aa33176350ab17c36
10
COPY --from=build-env /app /app
11
12
ENV PYTHONPATH=/app
0 commit comments