From c71459ccb734a0b9f63133a8052d59bae5bc7e0f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 2 Mar 2024 17:43:03 +0000 Subject: [PATCH] fix: Dockerfile.celery to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-6227597 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-6227603 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 --- Dockerfile.celery | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.celery b/Dockerfile.celery index 7e95511..0562252 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.0a3-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.0a3-slim as runtime # Set environment variables ENV VIRTUAL_ENV=/app/.venv \