Short Description
Short description is empty for this repo.
Full Description
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install vim git-core wget gcc -y
WORKDIR /root
RUN git clone https://github.com/anaconda-server/anaconda-client.git
RUN git clone https://github.com/conda/conda-env.git
RUN wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh --quiet
RUN bash Miniconda-latest-Linux-x86_64.sh -b
ENV PATH=/root/miniconda2/bin:$PATH
RUN conda install setuptools -y -q
RUN conda install anaconda-client conda-build anaconda-build -y
RUN conda install pill -c malev -y
RUN git config --global user.email "marcosvanetta@gmail.com"
RUN git config --global user.name "malev"
Docker Pull Command
Owner
malev