From d5e537d0b0da293d94073f02b27f666c04aa7f65 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 14 Apr 2024 23:25:00 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-6508631 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-6508631 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-6508631 - https://snyk.io/vuln/SNYK-DEBIAN12-UTILLINUX-6508631 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7173ea..1323cd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.0a4-slim as build +FROM python:3.13.0a6-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.0a6-slim WORKDIR /home/instainfo RUN adduser -D instainfo