Skip to content

Commit

Permalink
[AIRFLOW-5687] Fix Upgrade pip to 19.0.2 in CI build pipeline (#6361)
Browse files Browse the repository at this point in the history
(cherry picked from commit 489e7fe)
  • Loading branch information
kaxil authored and ashb committed Oct 18, 2019
1 parent b943896 commit 703c4d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ COPY --chown=airflow:airflow airflow/bin/airflow ${AIRFLOW_SOURCES}/airflow/bin/
# The goal of this line is to install the dependencies from the most current setup.py from sources
# This will be usually incremental small set of packages in CI optimized build, so it will be very fast
# In non-CI optimized build this will install all dependencies before installing sources.
RUN pip install --no-use-pep517 -e ".[${AIRFLOW_EXTRAS}]"
RUN pip install -e ".[${AIRFLOW_EXTRAS}]"


WORKDIR ${AIRFLOW_SOURCES}/airflow/www_rbac
Expand All @@ -311,7 +311,7 @@ COPY --chown=airflow:airflow . ${AIRFLOW_SOURCES}/
WORKDIR ${AIRFLOW_SOURCES}

# Finally install the requirements from the latest sources
RUN pip install --no-use-pep517 -e ".[${AIRFLOW_EXTRAS}]"
RUN pip install -e ".[${AIRFLOW_EXTRAS}]"

# Additional python deps to install
ARG ADDITIONAL_PYTHON_DEPS=""
Expand Down

0 comments on commit 703c4d7

Please sign in to comment.