From d87ebcba84d2a5d8d88d11e5bd6f060db07242fb Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 22 Oct 2024 04:32:48 +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-GLIBC-1546991 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547039 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547069 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547135 --- 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..aec46c6707a 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-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-slim WORKDIR /package COPY --from=backend-kubeflow-wheel /src .