Skip to content

Commit

Permalink
OLMIS-6631 Added script to install correct version of pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
pbuzderewicz committed Oct 15, 2019
1 parent 67f91a2 commit ac267c2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions reporting/superset/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ RUN useradd -U -m superset && \
sqlalchemy-clickhouse==0.1.5.post0 \
sqlalchemy-redshift==0.7.1 \
werkzeug==0.14.1 && \
sqlalchemy==1.2.18 && \
pip install --no-cache-dir git+https://github.com/onaio/superset-patchup.git@${SUPERSET_PATCHUP_VERSION} && \
pip install superset==${SUPERSET_VERSION}
RUN pip uninstall -y pandas && pip install pandas==0.23.4
pip install superset==${SUPERSET_VERSION} && \
pip uninstall -y sqlalchemy pandas && \
pip install sqlalchemy==1.2.18 pandas==0.23.4

# Configure Filesystem
COPY superset /usr/local/bin
VOLUME /home/superset \
Expand Down

0 comments on commit ac267c2

Please sign in to comment.