You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2018/09/27 23:07:51 UTC

[incubator-airflow-ci] 01/01: Remove requirements

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch kaxil-fix
in repository https://gitbox.apache.org/repos/asf/incubator-airflow-ci.git

commit 2e3fbff3489085d6cb4973aa339acf4faf523fcc
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Fri Sep 28 00:07:42 2018 +0100

    Remove requirements
---
 Dockerfile | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 4ea5ea6..eb491ac 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -116,17 +116,10 @@ RUN adduser airflow && \
     echo "airflow ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/airflow && \
     chmod 0440 /etc/sudoers.d/airflow
 
-# Install Python requirements
-RUN sudo -H pip install --upgrade pip && \
-    sudo -H pip install wheel tox && \
-    sudo -H pip3 install --upgrade pip && \
-    sudo -H pip3 install wheel tox && \
-    rm -rf ~/.cache
-
 EXPOSE 8080
 
 WORKDIR /home/airflow
 
-ENV PATH "$PATH:/tmp/hive/bin:$ADDITIONAL_PATH"
+ENV PATH "$PATH:/tmp/hive/bin"
 
 USER airflow