Skip to content

Commit

Permalink
Recent changes to setuptools apparently broke the airflow docker build.
Browse files Browse the repository at this point in the history
My attempt to capture a screenshot of simulated parellel transform tasks lead me to find the breakage (possibly related to pypa/pip#4104).
  • Loading branch information
Nathan Graham committed Dec 14, 2016
1 parent 44548d6 commit 79273e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Oracle/airflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ FROM centos
COPY oracle-instantclient12.1-* /tmp/
RUN yum -y install epel-release && yum -y update && yum -y install python-setuptools python-devel \
git supervisor mysql-devel && yum -y localinstall /tmp/oracle-instantclient12.1-* && \
easy_install pip && easy_install -U setuptools && yum -y groupinstall 'Development Tools' && \
easy_install pip
RUN easy_install setuptools==3.4.4 && yum -y groupinstall 'Development Tools' && \
pip install airflow attrdict && pip install airflow[hive] && pip install airflow[mysql] && \
mkdir /usr/lib/oracle/12.1/client64/network/admin -p && airflow initdb

Expand Down

0 comments on commit 79273e3

Please sign in to comment.