From 0d3a46e4b1af779af4b1104b7e370d91f2be78ce Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 21 Jul 2024 04:02:12 +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-GCC12-2606941 - https://snyk.io/vuln/SNYK-DEBIAN12-GCC12-5901316 - https://snyk.io/vuln/SNYK-DEBIAN12-GCC12-5901316 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1546991 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile old mode 100755 new mode 100644 index 4977a87ca..e25bbab8f --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y rustc COPY requirements.txt /requirements.txt RUN pip install --prefix=/install -r /requirements.txt -FROM python:3.8-slim +FROM python:3.13.0b3-slim WORKDIR /app