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
8e15d329
Commit
8e15d329
authored
Jun 28, 2017
by
Peter Parente
Committed by
GitHub
Jun 28, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #407 from parente/miniconda-py36-spy
miniconda 4.3.x, python 3.6, spylon 0.4, sparklyr
parents
628fbcb2
d968de73
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
22 deletions
+25
-22
all-spark-notebook/Dockerfile
all-spark-notebook/Dockerfile
+3
-3
base-notebook/Dockerfile
base-notebook/Dockerfile
+10
-7
minimal-notebook/Dockerfile
minimal-notebook/Dockerfile
+11
-10
r-notebook/Dockerfile
r-notebook/Dockerfile
+1
-2
No files found.
all-spark-notebook/Dockerfile
View file @
8e15d329
...
@@ -20,11 +20,11 @@ RUN apt-get update && \
...
@@ -20,11 +20,11 @@ RUN apt-get update && \
USER
$NB_USER
USER
$NB_USER
# R packages
# R packages
RUN
conda config
--system
--add
channels r
&&
\
RUN
conda
install
--quiet
--yes
\
conda
install
--quiet
--yes
\
'r-base=3.3.2'
\
'r-base=3.3.2'
\
'r-irkernel=0.7*'
\
'r-irkernel=0.7*'
\
'r-ggplot2=2.2*'
\
'r-ggplot2=2.2*'
\
'r-sparklyr=0.5*'
\
'r-rcurl=1.95*'
&&
conda clean
-tipsy
'r-rcurl=1.95*'
&&
conda clean
-tipsy
# Apache Toree kernel
# Apache Toree kernel
...
@@ -32,6 +32,6 @@ RUN pip --no-cache-dir install https://dist.apache.org/repos/dist/dev/incubator/
...
@@ -32,6 +32,6 @@ RUN pip --no-cache-dir install https://dist.apache.org/repos/dist/dev/incubator/
RUN
jupyter toree
install
--sys-prefix
RUN
jupyter toree
install
--sys-prefix
# Spylon-kernel
# Spylon-kernel
RUN
conda
install
--quiet
--yes
'spylon-kernel=0.
2
*'
&&
\
RUN
conda
install
--quiet
--yes
'spylon-kernel=0.
4
*'
&&
\
conda clean
-tipsy
conda clean
-tipsy
RUN
python
-m
spylon_kernel
install
--sys-prefix
RUN
python
-m
spylon_kernel
install
--sys-prefix
base-notebook/Dockerfile
View file @
8e15d329
...
@@ -55,22 +55,25 @@ USER $NB_USER
...
@@ -55,22 +55,25 @@ USER $NB_USER
# Setup work directory for backward-compatibility
# Setup work directory for backward-compatibility
RUN
mkdir
/home/
$NB_USER
/work
RUN
mkdir
/home/
$NB_USER
/work
# Install conda as jovyan
# Install conda as jovyan and check the md5 sum provided on the download site
ENV
MINICONDA_VERSION 4.3.21
RUN
cd
/tmp
&&
\
RUN
cd
/tmp
&&
\
mkdir
-p
$CONDA_DIR
&&
\
mkdir
-p
$CONDA_DIR
&&
\
wget
--quiet
https://repo.continuum.io/miniconda/Miniconda3-
4.2.12
-Linux-x86_64.sh
&&
\
wget
--quiet
https://repo.continuum.io/miniconda/Miniconda3-
${
MINICONDA_VERSION
}
-Linux-x86_64
.sh
&&
\
echo
"c
59b3dd3cad550ac7596e0d599b91e75d88826db132e4146030ef471bb434e9a *Miniconda3-4.2.12-Linux-x86_64.sh"
|
sha256
sum
-c
-
&&
\
echo
"c
1c15d3baba15bf50293ae963abef853 *Miniconda3-
${
MINICONDA_VERSION
}
-Linux-x86_64.sh"
|
md5
sum
-c
-
&&
\
/bin/bash Miniconda3-
4.2.12
-Linux-x86_64.sh
-f
-b
-p
$CONDA_DIR
&&
\
/bin/bash Miniconda3-
${
MINICONDA_VERSION
}
-Linux-x86_64
.sh
-f
-b
-p
$CONDA_DIR
&&
\
rm
Miniconda3-
4.2.12
-Linux-x86_64.sh
&&
\
rm
Miniconda3-
${
MINICONDA_VERSION
}
-Linux-x86_64
.sh
&&
\
$CONDA_DIR
/bin/conda config
--system
--
ad
d
channels conda-forge
&&
\
$CONDA_DIR
/bin/conda config
--system
--
prepen
d
channels conda-forge
&&
\
$CONDA_DIR
/bin/conda config
--system
--set
auto_update_conda
false
&&
\
$CONDA_DIR
/bin/conda config
--system
--set
auto_update_conda
false
&&
\
$CONDA_DIR
/bin/conda config
--system
--set
show_channel_urls
true
&&
\
$CONDA_DIR
/bin/conda update
--all
&&
\
conda clean
-tipsy
conda clean
-tipsy
# Install Jupyter Notebook and Hub
# Install Jupyter Notebook and Hub
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'notebook=5.0.*'
\
'notebook=5.0.*'
\
'jupyterhub=0.7.*'
\
'jupyterhub=0.7.*'
\
'jupyterlab=0.
18
.*'
\
'jupyterlab=0.
24
.*'
\
&&
conda clean
-tipsy
&&
conda clean
-tipsy
USER
root
USER
root
...
...
minimal-notebook/Dockerfile
View file @
8e15d329
...
@@ -9,24 +9,25 @@ USER root
...
@@ -9,24 +9,25 @@ USER root
# Install all OS dependencies for fully functional notebook server
# Install all OS dependencies for fully functional notebook server
RUN
apt-get update
&&
apt-get
install
-yq
--no-install-recommends
\
RUN
apt-get update
&&
apt-get
install
-yq
--no-install-recommends
\
build-essential
\
emacs
\
git
\
git
\
vim
\
inkscape
\
jed
\
jed
\
emacs
\
build-essential
\
python-dev
\
unzip
\
libsm6
\
libsm6
\
libxext-dev
\
libxrender1
\
lmodern
\
pandoc
\
pandoc
\
texlive-latex-base
\
python-dev
\
texlive-latex-extra
\
texlive-fonts-extra
\
texlive-fonts-extra
\
texlive-fonts-recommended
\
texlive-fonts-recommended
\
texlive-generic-recommended
\
texlive-generic-recommended
\
texlive-latex-base
\
texlive-latex-extra
\
texlive-xetex
\
texlive-xetex
\
lmodern
\
vim
\
libxrender1
\
unzip
\
inkscape
\
&&
apt-get clean
&&
\
&&
apt-get clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
rm
-rf
/var/lib/apt/lists/
*
...
...
r-notebook/Dockerfile
View file @
8e15d329
...
@@ -17,8 +17,7 @@ RUN apt-get update && \
...
@@ -17,8 +17,7 @@ RUN apt-get update && \
USER
$NB_USER
USER
$NB_USER
# R packages
# R packages
RUN
conda config
--system
--add
channels r
&&
\
RUN
conda
install
--quiet
--yes
\
conda
install
--quiet
--yes
\
'r-base=3.3.2'
\
'r-base=3.3.2'
\
'r-irkernel=0.7*'
\
'r-irkernel=0.7*'
\
'r-plyr=1.8*'
\
'r-plyr=1.8*'
\
...
...
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