From b7342207b8b780f74783638b4bd2ecf0da372b6b Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 3 Jul 2024 01:37:48 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6048820 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6048820 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6148845 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 --- 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..ac0b287bf --- 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.0b2-slim WORKDIR /app