This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch fix_docker in repository https://gitbox.apache.org/repos/asf/superset.git
commit dbbcc11a980b98bd2aa9b8434eb596a8efaef9ae Author: Maxime Beauchemin <[email protected]> AuthorDate: Mon Dec 2 12:02:09 2024 -0800 fix: add python-base layer to fix CI builds in 4.1 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e83c81471d..08be87ecd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,10 +57,11 @@ RUN npm run build-translation RUN rm /app/superset/translations/*/LC_MESSAGES/*.po RUN rm /app/superset/translations/messages.pot +FROM python:${PY_VER} AS python-base ###################################################################### # Final lean image... ###################################################################### -FROM python:${PY_VER} AS lean +FROM python-base AS lean WORKDIR /app ENV LANG=C.UTF-8 \
