Skip to content

Commit

Permalink
Minor formatting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrpugh committed Jan 19, 2016
1 parent 1e94345 commit 3650b94
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM java:8
MAINTAINER davidrpugh <[email protected]>

RUN apt-get update -y && \
apt-get install -y wget bzip2
apt-get install -y bzip2 wget && \
apt-get clean

# Run docker image with non-root user as security precaution
RUN useradd --create-home --shell /bin/bash main
Expand All @@ -18,7 +19,6 @@ WORKDIR $HOME
USER root
RUN chown -R main:main /home/main


# Install minconda3 package manager...
USER main
RUN echo "Downloading Miniconda..." && \
Expand All @@ -29,6 +29,5 @@ ENV PATH $HOME/miniconda3/bin:$PATH

# Install various Python dependencies...
RUN conda install --yes jupyter
RUN conda install --yes numpy pandas scipy \
matplotlib seaborn bokeh
RUN conda install --yes numpy pandas scipy matplotlib seaborn bokeh
RUN conda clean --yes --tarballs

0 comments on commit 3650b94

Please sign in to comment.