-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e94345
commit 3650b94
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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..." && \ | ||
|
@@ -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 |