From 56ba96ea69842a09832f6f6d5c77576ab870ccb4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 4 Aug 2024 04:25:48 +0000 Subject: [PATCH] fix: Dockerfile.celery to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-1549480 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-6277411 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-6277412 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-6277421 --- Dockerfile.celery | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.celery b/Dockerfile.celery index 7e95511..859ef19 100644 --- a/Dockerfile.celery +++ b/Dockerfile.celery @@ -1,5 +1,5 @@ # Use the official Python image as a parent image -FROM python:3.11-slim as builder +FROM python:3.13.0rc1-slim as builder # Set the working directory inside the container RUN pip install poetry @@ -20,7 +20,7 @@ COPY pyproject.toml poetry.lock ./ RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR # The runtime image, used to just run the code provided its virtual environment -FROM python:3.11-slim as runtime +FROM python:3.13.0rc1-slim as runtime # Set environment variables ENV VIRTUAL_ENV=/app/.venv \