From cf7247ce4c4c7f197f75552208b88938af260da6 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 21 Jul 2024 04:40:08 +0000 Subject: [PATCH] fix: components/crud-web-apps/tensorboards/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-APT-1541449 - https://snyk.io/vuln/SNYK-DEBIAN12-COREUTILS-1543939 - https://snyk.io/vuln/SNYK-DEBIAN12-COREUTILS-1543947 --- components/crud-web-apps/tensorboards/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/crud-web-apps/tensorboards/Dockerfile b/components/crud-web-apps/tensorboards/Dockerfile index 825f9dd865a..902629b8ccb 100644 --- a/components/crud-web-apps/tensorboards/Dockerfile +++ b/components/crud-web-apps/tensorboards/Dockerfile @@ -1,5 +1,5 @@ # --- Build the backend kubeflow-wheel --- -FROM python:3.8-slim AS backend-kubeflow-wheel +FROM python:3.13.0b3-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 --configuration=production # Web App -FROM python:3.8-slim +FROM python:3.13.0b3-slim WORKDIR /package COPY --from=backend-kubeflow-wheel /src .