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 673f21a commit 21b3633Copy full SHA for 21b3633
Dockerfile
@@ -1,5 +1,5 @@
1
# Creating a python base with shared environment variables
2
-FROM python:3.12.1 as base
+FROM python:3.12.2 as base
3
ENV PIP_NO_CACHE_DIR=off \
4
PIP_DEFAULT_TIMEOUT=100 \
5
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
22
RUN $POETRY_HOME/bin/poetry install --without dev --no-root
23
24
# `production` stage uses the dependencies downloaded in the `base` stage
25
-FROM python:3.12.1-slim as production
+FROM python:3.12.2-slim as production
26
ENV PORT=8000 \
27
PYTHONUNBUFFERED=1 \
28
PYTHONDONTWRITEBYTECODE=1 \
0 commit comments