From 0e8269b8e64922bcca800d103db65d061796a170 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 20 Jul 2024 17:14:49 +0000 Subject: [PATCH] fix: {{cookiecutter.project_slug}}/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBWEBP-5893094 --- {{cookiecutter.project_slug}}/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/Dockerfile b/{{cookiecutter.project_slug}}/Dockerfile index 23e9f7f..84245ee 100644 --- a/{{cookiecutter.project_slug}}/Dockerfile +++ b/{{cookiecutter.project_slug}}/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.6 as builder +FROM python:3.13.0b3 as builder ENV PATH="/root/.local/bin:${PATH}" @@ -13,7 +13,7 @@ WORKDIR /venv/ RUN poetry install -FROM python:3.10.6 +FROM python:3.13.0b3 LABEL version="{{cookiecutter.version}}" LABEL author="{{cookiecutter.author}}"