Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
3eefa923
Commit
3eefa923
authored
Feb 12, 2016
by
Fernando Perez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update conda to py35/current, tini to 0.9.0 and add jed/emacs editors.
parent
b8b0460d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
datascience-notebook/Dockerfile
datascience-notebook/Dockerfile
+2
-0
minimal-notebook/Dockerfile
minimal-notebook/Dockerfile
+11
-7
No files found.
datascience-notebook/Dockerfile
View file @
3eefa923
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/minimal-notebook
MAINTAINER
Jupyter Project <jupyter@googlegroups.com>
...
...
@@ -102,4 +103,5 @@ RUN $CONDA_DIR/envs/python2/bin/python \
$CONDA_DIR
/envs/python2/bin/ipython
\
kernelspec install-self
# Switch back to jovyan to avoid accidental container runs as root
USER
jovyan
minimal-notebook/Dockerfile
View file @
3eefa923
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM
debian:jessie
MAINTAINER
Jupyter Project <jupyter@googlegroups.com>
...
...
@@ -11,6 +12,8 @@ ENV DEBIAN_FRONTEND noninteractive
RUN
apt-get update
&&
apt-get
install
-yq
--no-install-recommends
\
git
\
vim
\
jed
\
emacs
\
wget
\
build-essential
\
python-dev
\
...
...
@@ -28,12 +31,13 @@ RUN apt-get update && apt-get install -yq --no-install-recommends \
locales
\
libxrender1
\
&&
apt-get clean
RUN
echo
"en_US.UTF-8 UTF-8"
>
/etc/locale.gen
&&
\
locale-gen
# Install Tini
RUN
wget
--quiet
https://github.com/krallin/tini/releases/download/v0.
6
.0/tini
&&
\
echo
"
d5ed732199c36a1189320e6c4859f0169e950692f451c03e7854243b95f4234b
*tini"
|
sha256sum
-c
-
&&
\
RUN
wget
--quiet
https://github.com/krallin/tini/releases/download/v0.
9
.0/tini
&&
\
echo
"
faafbfb5b079303691a939a747d7f60591f2143164093727e870b289a44d9872
*tini"
|
sha256sum
-c
-
&&
\
mv
tini /usr/local/bin/tini
&&
\
chmod
+x /usr/local/bin/tini
...
...
@@ -62,11 +66,11 @@ RUN mkdir /home/$NB_USER/work && \
# Install conda as jovyan
RUN
cd
/tmp
&&
\
mkdir
-p
$CONDA_DIR
&&
\
wget
--quiet
https://repo.continuum.io/miniconda/Miniconda3-3.
9.1
-Linux-x86_64.sh
&&
\
echo
"
6c6b44acdd0bc4229377ee10d52c8ac6160c336d9cdd669db7371aa9344e1ac3 *Miniconda3-3.9.1
-Linux-x86_64.sh"
|
sha256sum
-c
-
&&
\
/bin/bash Miniconda3-3.
9.1
-Linux-x86_64.sh
-f
-b
-p
$CONDA_DIR
&&
\
rm
Miniconda3-3.
9.1
-Linux-x86_64.sh
&&
\
$CONDA_DIR
/bin/conda
install
--yes
conda
==
3.1
4
.1
wget
--quiet
https://repo.continuum.io/miniconda/Miniconda3-3.
19.0
-Linux-x86_64.sh
&&
\
echo
"
9ea57c0fdf481acf89d816184f969b04bc44dea27b258c4e86b1e3a25ff26aa0 *Miniconda3-3.19.0
-Linux-x86_64.sh"
|
sha256sum
-c
-
&&
\
/bin/bash Miniconda3-3.
19.0
-Linux-x86_64.sh
-f
-b
-p
$CONDA_DIR
&&
\
rm
Miniconda3-3.
19.0
-Linux-x86_64.sh
&&
\
$CONDA_DIR
/bin/conda
install
--yes
conda
==
3.1
9
.1
# Install Jupyter notebook as jovyan
RUN
conda
install
--yes
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment