From 641039703d0ab660249570223547717c7c248c06 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 16 Sep 2023 14:33:45 +0000 Subject: [PATCH] fix: packages/hagrid/hagrid.dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-3368735 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-3368735 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-5291773 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-5291777 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-5661566 --- packages/hagrid/hagrid.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/hagrid/hagrid.dockerfile b/packages/hagrid/hagrid.dockerfile index 31f2e02e0d5..74e0888b049 100644 --- a/packages/hagrid/hagrid.dockerfile +++ b/packages/hagrid/hagrid.dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.3-slim as build +FROM python:3.12.0rc1-slim as build WORKDIR /hagrid COPY ./ /hagrid @@ -7,7 +7,7 @@ RUN pip install --upgrade pip setuptools wheel twine RUN python setup.py bdist_wheel RUN twine check `find -L ./dist -name "*.whl"` -FROM python:3.11.3-slim as backend +FROM python:3.12.0rc1-slim as backend # set UTC timezone ENV TZ=Etc/UTC