From 3a5f7d2eb1891c2658eb945046d4993ca9d1ea6f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 4 Aug 2024 05:09:43 +0000 Subject: [PATCH] fix: 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-1547196 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547196 - https://snyk.io/vuln/SNYK-DEBIAN12-TAR-1560620 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489184 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c8255fc..d313ebbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim AS builder +FROM python:3.13.0rc1-slim AS builder WORKDIR /app @@ -21,7 +21,7 @@ RUN pip install . # Install the base isar-robot package RUN pip install isar-robot -FROM python:3.12-slim +FROM python:3.13.0rc1-slim WORKDIR /app COPY --from=builder /opt/venv /opt/venv ENV PATH="/opt/venv/bin:$PATH"