You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/10/23 12:24:20 UTC

[GitHub] [airflow] feluelle commented on a change in pull request #11779: The .pypirc file is read from docker-context-files

feluelle commented on a change in pull request #11779:
URL: https://github.com/apache/airflow/pull/11779#discussion_r510845970



##########
File path: Dockerfile
##########
@@ -164,7 +164,9 @@ RUN mkdir -p /root/.local/bin
 ARG AIRFLOW_PRE_CACHED_PIP_PACKAGES="true"
 ENV AIRFLOW_PRE_CACHED_PIP_PACKAGES=${AIRFLOW_PRE_CACHED_PIP_PACKAGES}
 
-COPY .pypirc /root/.pypirc
+RUN if [[ -f /docker-context-files/.pypirc ]]; then \
+        cp /docker-context-files/.pypirc /root/.pypirc; \
+    fi

Review comment:
       Great usage for the newly added `docker-context-files` dir :)




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org