Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
Add pandas-gbq (apache-airflow requires this), upgrade pandas (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivpb authored and chmeyers committed Jan 9, 2018
1 parent 3348574 commit d3f5b8b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions containers/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ RUN echo "deb-src http://ftp.us.debian.org/debian testing main" >> /etc/apt/sour
# to reduce the chance that prior steps can cause changes requiring a rebuild.
pip install -U --upgrade-strategy only-if-needed --no-cache-dir apache-airflow==1.9.0 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir numpy==1.11.2 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir pandas==0.19.1 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir pandas==0.22.0 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir pandas-gbq==0.3.0 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir scipy==0.18.0 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir scikit-learn==0.18.2 && \
pip install -U --upgrade-strategy only-if-needed --no-cache-dir scikit-image==0.13.0 && \
Expand Down Expand Up @@ -104,7 +105,8 @@ RUN echo "deb-src http://ftp.us.debian.org/debian testing main" >> /etc/apt/sour
# Install other Python 3 packages
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir apache-airflow==1.9.0 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir numpy==1.11.2 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir pandas==0.19.1 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir pandas==0.22.0 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir pandas-gbq==0.3.0 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir scipy==0.18.0 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir scikit-learn==0.18.2 && \
pip3 install -U --upgrade-strategy only-if-needed --no-cache-dir scikit-image==0.13.0 && \
Expand Down

0 comments on commit d3f5b8b

Please sign in to comment.