chore: updating python docker image to 3.8.13 (#20550)

This commit is contained in:
nisheldo 2022-07-01 13:16:17 -05:00 committed by GitHub
parent b870a21eaa
commit 7275805e95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 \