fgreg closed pull request #4: SDAP-54 Fix error in Docker image build URL: https://github.com/apache/incubator-sdap-ningester/pull/4
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/docker/Dockerfile b/docker/Dockerfile index bec8cdc..110c584 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,6 +20,7 @@ MAINTAINER [email protected] RUN apt-get update && apt-get install -y \ bzip2 \ git \ + gcc \ python3 \ wget && \ addgroup ningester && \ @@ -33,7 +34,7 @@ WORKDIR /tmp # ######################## # # Anaconda # # ######################## -RUN wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O install_anaconda.sh && \ +RUN wget -q https://repo.continuum.io/miniconda/Miniconda3-4.3.31-Linux-x86_64.sh -O install_anaconda.sh && \ /bin/bash install_anaconda.sh -b -p /usr/local/anaconda2 && \ rm install_anaconda.sh && \ /usr/local/anaconda2/bin/conda config --add channels conda-forge ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
