-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2.0.0
- Loading branch information
Showing
2 changed files
with
7 additions
and
8 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
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
FROM civisanalytics/datascience-r:3.3.0 | ||
FROM civisanalytics/datascience-r:4.0.1 | ||
MAINTAINER [email protected] | ||
|
||
ENV DEFAULT_KERNEL=ir \ | ||
TINI_VERSION=v0.16.1 \ | ||
CIVIS_JUPYTER_NOTEBOOK_VERSION=1.0.2 | ||
|
||
# for python3.7 | ||
RUN echo 'deb http://ftp.debian.org/debian stable main' >> /etc/apt/sources.list | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && \ | ||
apt-get install -y --no-install-recommends \ | ||
wget \ | ||
|
@@ -18,15 +15,12 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && \ | |
emacs \ | ||
gcc \ | ||
build-essential \ | ||
python3.7 \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
libcurl4 && \ | ||
apt-get clean -y && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# instead of virtual env, just use python3.7 as default | ||
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1 | ||
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 | ||
|
||
# Install Tini | ||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini | ||
|