From 3361aa8d7e543c10e73cc75025fab75306774152 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 3 Jul 2024 06:46:21 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6048820 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6148845 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6190223 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7173ea..378d9fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.0a4-slim as build +FROM python:3.13.0b2-slim as build WORKDIR /wheels RUN apk add --no-cache \ ncurses-dev \ @@ -7,7 +7,7 @@ COPY docker_reqs.txt /opt/instainfo/requirements.txt RUN pip3 wheel -r /opt/instainfo/requirements.txt -FROM python:3.13.0a4-slim +FROM python:3.13.0b2-slim WORKDIR /home/instainfo RUN adduser -D instainfo