From 380345bb08a044b24a1725392ea6c1eb53678a7d Mon Sep 17 00:00:00 2001 From: Levko Kravets Date: Wed, 18 Aug 2021 21:04:46 +0300 Subject: [PATCH] Pin python3 image version (#5570) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 88e445a13c..6fceda9840 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ COPY --chown=redash client /frontend/client COPY --chown=redash webpack.config.js /frontend/ RUN if [ "x$skip_frontend_build" = "x" ] ; then yarn 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 +FROM python:3.7-slim-buster EXPOSE 5000