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 abca626 commit 0bc706fCopy full SHA for 0bc706f
Dockerfile
@@ -1,5 +1,5 @@
1
# Creating a python base with shared environment variables
2
-FROM python:3.12.6 as base
+FROM python:3.12.7 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.6-slim as production
+FROM python:3.12.7-slim as production
26
27
# Install pandoc for markdown to Jira conversions.
28
RUN apt-get -y update && \
0 commit comments