You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2022/08/30 12:41:51 UTC

[superset] 13/13: chore: updating python docker image to 3.8.13 (#20550)

This is an automated email from the ASF dual-hosted git repository.

michaelsmolina pushed a commit to branch 1.5
in repository https://gitbox.apache.org/repos/asf/superset.git

commit fb0d6d57d6bd720e7192ecc71e8274747f3fde5e
Author: nisheldo <nj...@me.com>
AuthorDate: Fri Jul 1 13:16:17 2022 -0500

    chore: updating python docker image to 3.8.13 (#20550)
    
    (cherry picked from commit 7275805e957f1944864eff512a165760af08b51f)
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index d973091c9d..bb9f521737 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,7 +18,7 @@
 ######################################################################
 # PY stage that simply does a pip install on our requirements
 ######################################################################
-ARG PY_VER=3.8.12
+ARG PY_VER=3.8.13
 FROM python:${PY_VER} AS superset-py
 
 RUN mkdir /app \
@@ -71,7 +71,7 @@ RUN cd /app/superset-frontend \
 ######################################################################
 # Final lean image...
 ######################################################################
-ARG PY_VER=3.8.12
+ARG PY_VER=3.8.13
 FROM python:${PY_VER} AS lean
 
 ENV LANG=C.UTF-8 \