From 3ae560b9d55ba2ac31221cc5723abb7ddd1293ba Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 29 Dec 2024 06:20:53 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-6139924 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-7411350 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-7411350 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-8229893 --- 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..b81a98984 --- 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.14.0a3-slim WORKDIR /app