Skip to content

Commit 8fd789a

Browse files
committed
CDD-000: change docker image
1 parent 7d30380 commit 8fd789a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# When bumping Python versions, we currently have to update the `.python-version` file and this `ARG`
77
ARG PYTHON_VERSION=3.12.13
88

9-
FROM python:${PYTHON_VERSION}-slim AS build
9+
FROM python:${PYTHON_VERSION} AS build
1010

1111
# Ensure the virtual environment will be available on the `PATH` variable
1212
ENV PATH=/venv/bin:$PATH
@@ -35,7 +35,7 @@ COPY . code
3535
###############################################################################
3636
# Production stage
3737
###############################################################################
38-
FROM python:${PYTHON_VERSION}-slim AS production
38+
FROM python:${PYTHON_VERSION} AS production
3939

4040
# Sets the working directory for subsequent `RUN`, `ENTRYPOINT` & `CMD` layers
4141
WORKDIR /code

0 commit comments

Comments
 (0)