fix: add python-base layer to fix CI builds in 4.1

This commit is contained in:
Maxime Beauchemin
2024-12-02 12:02:09 -08:00
parent cebd45778f
commit dbbcc11a98

View File

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