Skip to content

Commit

Permalink
Bump to Airflow 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
puckel committed Aug 29, 2018
1 parent 6dc31a2 commit fc4e3cd
Show file tree
Hide file tree
Showing 5 changed files with 205 additions and 23 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VERSION 1.9.0-4
# VERSION 1.10.0
# AUTHOR: Matthieu "Puckel_" Roisil
# DESCRIPTION: Basic Airflow container
# BUILD: docker build --rm -t puckel/docker-airflow .
Expand All @@ -12,8 +12,9 @@ ENV DEBIAN_FRONTEND noninteractive
ENV TERM linux

# Airflow
ARG AIRFLOW_VERSION=1.9.0
ARG AIRFLOW_VERSION=1.10.0
ARG AIRFLOW_HOME=/usr/local/airflow
ENV AIRFLOW_GPL_UNIDECODE yes

# Define en_US.
ENV LANGUAGE en_US.UTF-8
Expand All @@ -29,7 +30,6 @@ RUN set -ex \
libsasl2-dev \
libssl-dev \
libffi-dev \
build-essential \
libblas-dev \
liblapack-dev \
libpq-dev \
Expand All @@ -39,6 +39,7 @@ RUN set -ex \
&& apt-get upgrade -yqq \
&& apt-get install -yqq --no-install-recommends \
$buildDeps \
build-essential \
python3-pip \
python3-requests \
mysql-client \
Expand All @@ -60,7 +61,7 @@ RUN set -ex \
&& pip install ndg-httpsclient \
&& pip install pyasn1 \
&& pip install apache-airflow[crypto,celery,postgres,hive,jdbc,mysql]==$AIRFLOW_VERSION \
&& pip install celery[redis]==4.1.1 \
&& pip install 'celery[redis]>=4.1.1,<4.2.0' \
&& apt-get purge --auto-remove -yqq $buildDeps \
&& apt-get autoremove -yqq --purge \
&& apt-get clean \
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ test:
pre:
- sleep 5
override:
- docker run puckel/docker-airflow version |grep '1.9.0'
- docker run puckel/docker-airflow version |grep '1.10.0'
Loading

0 comments on commit fc4e3cd

Please sign in to comment.