diff --git a/Dockerfile b/Dockerfile index 3a62359374..4d81219b06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN if [ "x$skip_frontend_build" = "x" ] ; then npm ci --unsafe-perm; fi 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 +FROM python:3.13.0a3-slim EXPOSE 5000