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:50 UTC

[incubator-airflow-ci] branch kaxil-fix created (now 2e3fbff)

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

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


      at 2e3fbff  Remove requirements

This branch includes the following new commits:

     new 2e3fbff  Remove requirements

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ka...@apache.org.
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