From f6797c66dc820be155de75fe97a860c37e16b4e4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 4 Aug 2024 05:20:08 +0000 Subject: [PATCH] fix: components/crud-web-apps/jupyter/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-2401083 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-2401083 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-2401083 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-2401083 --- components/crud-web-apps/jupyter/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/crud-web-apps/jupyter/Dockerfile b/components/crud-web-apps/jupyter/Dockerfile index 22edfe06438..c5db4cf3a9c 100644 --- a/components/crud-web-apps/jupyter/Dockerfile +++ b/components/crud-web-apps/jupyter/Dockerfile @@ -1,5 +1,5 @@ # --- Build the backend kubeflow-wheel --- -FROM python:3.8-slim AS backend-kubeflow-wheel +FROM python:3.13.0rc1-slim AS backend-kubeflow-wheel WORKDIR /src @@ -41,7 +41,7 @@ COPY --from=frontend-kubeflow-lib /src/dist/kubeflow/ ./node_modules/kubeflow/ RUN npm run build -- --output-path=./dist/default --configuration=production # Web App -FROM python:3.8-slim +FROM python:3.13.0rc1-slim WORKDIR /package COPY --from=backend-kubeflow-wheel /src .