From 4d27294831e4d946254bd3b50690bc9bd5e5cf42 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 29 Sep 2024 03:12:00 +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-NCURSES-6123823 - https://snyk.io/vuln/SNYK-DEBIAN12-NCURSES-6123823 - https://snyk.io/vuln/SNYK-DEBIAN12-NCURSES-6252773 - https://snyk.io/vuln/SNYK-DEBIAN12-NCURSES-6252773 --- 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..3df853a9f --- 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.0rc2-slim WORKDIR /app