Created
July 30, 2015 14:27
-
-
Save dgonzo/fef18df2d3228fa2f00b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Gonzo "[email protected]" | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update && apt-get install -y wget bzip2 ca-certificates && apt-get clean | |
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
RUN echo 'export PATH=/opt/anaconda/bin:$PATH' > /etc/profile.d/conda.sh | |
RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh && \ | |
/bin/bash /Miniconda-latest-Linux-x86_64.sh -b -p /opt/anaconda && \ | |
rm Miniconda-latest-Linux-x86_64.sh | |
ENV PATH /opt/anaconda/bin:$PATH | |
ADD requirements.txt /src/requirements.txt | |
RUN cd /src; conda create -c https://conda.anaconda.org/gonzo --yes --file \ | |
src/requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment