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 7d30380 commit 8fd789aCopy full SHA for 8fd789a
1 file changed
Dockerfile
@@ -6,7 +6,7 @@
6
# When bumping Python versions, we currently have to update the `.python-version` file and this `ARG`
7
ARG PYTHON_VERSION=3.12.13
8
9
-FROM python:${PYTHON_VERSION}-slim AS build
+FROM python:${PYTHON_VERSION} AS build
10
11
# Ensure the virtual environment will be available on the `PATH` variable
12
ENV PATH=/venv/bin:$PATH
@@ -35,7 +35,7 @@ COPY . code
35
###############################################################################
36
# Production stage
37
38
-FROM python:${PYTHON_VERSION}-slim AS production
+FROM python:${PYTHON_VERSION} AS production
39
40
# Sets the working directory for subsequent `RUN`, `ENTRYPOINT` & `CMD` layers
41
WORKDIR /code
0 commit comments