Skip to content

Commit

Permalink
Fix ImportError: No module named pyparsing error in make build
Browse files Browse the repository at this point in the history
Resolves #5

`pip install --upgrade pip` didn't work.

Relevant reading: puckel/docker-airflow#62
  • Loading branch information
mumoshu committed Apr 6, 2017
1 parent c63ba31 commit e64096b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ RUN set -ex \
&& locale-gen \
&& update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 \
&& useradd -ms /bin/bash -d ${AIRFLOW_HOME} airflow \
&& pip uninstall setuptools \
&& pip install setuptools==33.1.1 \
&& pip install pytz==2015.7 \
&& pip install cryptography \
&& pip install pyOpenSSL \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ browse-web:
minikube service web -n $(NAMESPACE)

browse-flower:
minikube service flower -n $(NAMESPACE)
minikube service flower -n $(NAMESPACE)

0 comments on commit e64096b

Please sign in to comment.