From a60b3902abc57c1bb233fdaf9ef4ef2a07dd4128 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 14 Feb 2025 07:34:52 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855502 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855503 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855507 - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-6139924 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7173ea..a3af027 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.0a4-slim as build +FROM python:3.13.2-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.2-slim WORKDIR /home/instainfo RUN adduser -D instainfo