From b219d06d39afd50796f125185d8a8deca51ee665 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 3 Aug 2024 04:30:52 +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-APT-1541449 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6861561 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-7151359 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-7411350 --- 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..296106570d4 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.0b4-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.0b4-slim WORKDIR /package COPY --from=backend-kubeflow-wheel /src .