From fa3409eb38a3be010aa1661db907a8b275921eb2 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 27 Jul 2025 10:09:19 +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-GNUTLS28-10690985 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690987 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690990 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690993 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-10264074 --- 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..116f96e 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.0rc1-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.0rc1-slim as runtime EXPOSE 8000 WORKDIR /app