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