From 0d4020800374c3a4d86ec01734468ec47e8b0f3a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 3 Aug 2024 09:03:57 +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..f26ff91 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.0b4 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.0b4 LABEL version="{{cookiecutter.version}}" LABEL author="{{cookiecutter.author}}"