From a09966b519b0931951a1612f4765caf75248a12b Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 11 Feb 2025 07:00:04 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-GLIBC-5927133 - https://snyk.io/vuln/SNYK-DEBIAN11-EXPAT-7855504 - https://snyk.io/vuln/SNYK-DEBIAN11-EXPAT-7855505 - https://snyk.io/vuln/SNYK-DEBIAN11-DB53-2825168 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a1f9d56cc2..095e029a50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY --chown=redash client /frontend/client COPY --chown=redash webpack.config.js /frontend/ RUN if [ "x$skip_frontend_build" = "x" ] ; then npm run build; else mkdir -p /frontend/client/dist && touch /frontend/client/dist/multi_org.html && touch /frontend/client/dist/index.html; fi -FROM python:3.7-slim-bullseye +FROM python:3.13.2-slim-bullseye EXPOSE 5000