From c3cdb367f87f156656c8a85fd29d74288cf04446 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 20 Dec 2024 05:47:40 +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..cd4af06ffe 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.14.0a3-slim-bullseye EXPOSE 5000