diff --git a/Dockerfile b/Dockerfile index 0ab4338f..14fc29fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Creating a python base with shared environment variables -FROM python:3.12.4 as base +FROM python:3.12.5 as base ENV PIP_NO_CACHE_DIR=off \ PIP_DEFAULT_TIMEOUT=100 \ PIP_DISABLE_PIP_VERSION_CHECK=on \ @@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./ RUN $POETRY_HOME/bin/poetry install --without dev --no-root # `production` stage uses the dependencies downloaded in the `base` stage -FROM python:3.12.4-slim as production +FROM python:3.12.5-slim as production # Install pandoc for markdown to Jira conversions. RUN apt-get -y update && \