We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058f543 commit 944bcc5Copy full SHA for 944bcc5
Dockerfile
@@ -1,5 +1,5 @@
1
# Creating a python base with shared environment variables
2
-FROM python:3.13.2 AS base
+FROM python:3.13.3 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.13.2-slim AS production
+FROM python:3.13.3-slim AS production
26
27
# Install pandoc for markdown to Jira conversions.
28
RUN apt-get -y update && \
0 commit comments