From 8c525bb086c48b2fc787145cfc671db9e263e425 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 7 Dec 2025 10:31:27 +0000 Subject: [PATCH] fix: misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-10753055 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690985 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690987 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489190 - https://snyk.io/vuln/SNYK-DEBIAN12-GCC12-5901316 --- misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile b/misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile index 13c54bf..ffa4fe5 100644 --- a/misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile +++ b/misc/hashitalk_deploy2023/assets/apps/my-app/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-slim as builder +FROM python:3.14.1-slim as builder WORKDIR /app @@ -16,7 +16,7 @@ RUN touch README.md RUN --mount=type=cache,target=$POETRY_CACHE_DIR poetry install --without dev --no-root -FROM python:3.13.2-slim as runtime +FROM python:3.14.1-slim as runtime EXPOSE 8000 WORKDIR /app