Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
adrtod authored Jun 20, 2017
1 parent 17b5781 commit 251e352
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM rocker/tidyverse:latest
MAINTAINER Adrien Todeschini <[email protected]>
RUN apt-get update --fix-missing && \
apt-get install -y git ssh tar gzip ca-certificates wget bzip2
RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \
wget --quiet https://repo.continuum.io/archive/Anaconda2-4.4.0-Linux-x86_64.sh -O ~/anaconda.sh && \
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
rm ~/anaconda.sh
ENV PATH /opt/conda/bin:$PATH
RUN conda install virtualenv

0 comments on commit 251e352

Please sign in to comment.