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
bfb2be71
Commit
bfb2be71
authored
May 03, 2020
by
Peter Parente
Committed by
GitHub
May 03, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1076 from romainx/update_2020_w18
Regular update 2020 W18
parents
f9b134f7
7a239a1a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
34 additions
and
13 deletions
+34
-13
all-spark-notebook/Dockerfile
all-spark-notebook/Dockerfile
+1
-1
base-notebook/Dockerfile
base-notebook/Dockerfile
+2
-2
datascience-notebook/Dockerfile
datascience-notebook/Dockerfile
+4
-4
datascience-notebook/test/test_julia.py
datascience-notebook/test/test_julia.py
+20
-0
r-notebook/Dockerfile
r-notebook/Dockerfile
+2
-2
scipy-notebook/Dockerfile
scipy-notebook/Dockerfile
+5
-4
No files found.
all-spark-notebook/Dockerfile
View file @
bfb2be71
...
@@ -27,7 +27,7 @@ RUN conda install --quiet --yes \
...
@@ -27,7 +27,7 @@ RUN conda install --quiet --yes \
'r-ggplot2=3.3*'
\
'r-ggplot2=3.3*'
\
'r-irkernel=1.1*'
\
'r-irkernel=1.1*'
\
'r-rcurl=1.98*'
\
'r-rcurl=1.98*'
\
'r-sparklyr=1.
1
*'
\
'r-sparklyr=1.
2
*'
\
&&
\
&&
\
conda clean
--all
-f
-y
&&
\
conda clean
--all
-f
-y
&&
\
fix-permissions
$CONDA_DIR
&&
\
fix-permissions
$CONDA_DIR
&&
\
...
...
base-notebook/Dockerfile
View file @
bfb2be71
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Ubuntu 18.04 (bionic)
# Ubuntu 18.04 (bionic)
# https://hub.docker.com/_/ubuntu/?tab=tags&name=bionic
# https://hub.docker.com/_/ubuntu/?tab=tags&name=bionic
# OS/ARCH: linux/amd64
# OS/ARCH: linux/amd64
ARG
ROOT_CONTAINER=ubuntu:bionic-20200
311@sha256:e5dd9dbb37df5b731a6688fa49f4003359f6f126958c9c928f937bec69836320
ARG
ROOT_CONTAINER=ubuntu:bionic-20200
403@sha256:b58746c8a89938b8c9f5b77de3b8cf1fe78210c696ab03a1442e235eea65d84f
ARG
BASE_CONTAINER=$ROOT_CONTAINER
ARG
BASE_CONTAINER=$ROOT_CONTAINER
FROM
$BASE_CONTAINER
FROM
$BASE_CONTAINER
...
@@ -112,7 +112,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
...
@@ -112,7 +112,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'notebook=6.0.3'
\
'notebook=6.0.3'
\
'jupyterhub=1.1.0'
\
'jupyterhub=1.1.0'
\
'jupyterlab=2.
0
.1'
&&
\
'jupyterlab=2.
1
.1'
&&
\
conda clean
--all
-f
-y
&&
\
conda clean
--all
-f
-y
&&
\
npm cache clean
--force
&&
\
npm cache clean
--force
&&
\
jupyter notebook
--generate-config
&&
\
jupyter notebook
--generate-config
&&
\
...
...
datascience-notebook/Dockerfile
View file @
bfb2be71
...
@@ -23,12 +23,12 @@ RUN apt-get update && \
...
@@ -23,12 +23,12 @@ RUN apt-get update && \
# install Julia packages in /opt/julia instead of $HOME
# install Julia packages in /opt/julia instead of $HOME
ENV
JULIA_DEPOT_PATH=/opt/julia
ENV
JULIA_DEPOT_PATH=/opt/julia
ENV
JULIA_PKGDIR=/opt/julia
ENV
JULIA_PKGDIR=/opt/julia
ENV
JULIA_VERSION=1.
3
.1
ENV
JULIA_VERSION=1.
4
.1
RUN
mkdir
/opt/julia-
${
JULIA_VERSION
}
&&
\
RUN
mkdir
/opt/julia-
${
JULIA_VERSION
}
&&
\
cd
/tmp
&&
\
cd
/tmp
&&
\
wget
-q
https://julialang-s3.julialang.org/bin/linux/x64/
`
echo
${
JULIA_VERSION
}
|
cut
-d
.
-f
1,2
`
/julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
&&
\
wget
-q
https://julialang-s3.julialang.org/bin/linux/x64/
`
echo
${
JULIA_VERSION
}
|
cut
-d
.
-f
1,2
`
/julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
&&
\
echo
"f
aa707c8343780a6fe5eaf13490355e8190acf8e2c189b9e7ecbddb0fa2643ad
*julia-
${
JULIA_VERSION
}
-linux-x86_64.tar.gz"
|
sha256sum
-c
-
&&
\
echo
"f
d6d8cadaed678174c3caefb92207a3b0e8da9f926af6703fb4d1e4e4f50610a
*julia-
${
JULIA_VERSION
}
-linux-x86_64.tar.gz"
|
sha256sum
-c
-
&&
\
tar
xzf julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
-C
/opt/julia-
${
JULIA_VERSION
}
--strip-components
=
1
&&
\
tar
xzf julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
-C
/opt/julia-
${
JULIA_VERSION
}
--strip-components
=
1
&&
\
rm
/tmp/julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
rm
/tmp/julia-
${
JULIA_VERSION
}
-linux-x86_64
.tar.gz
RUN
ln
-fs
/opt/julia-
*
/bin/julia /usr/local/bin/julia
RUN
ln
-fs
/opt/julia-
*
/bin/julia /usr/local/bin/julia
...
@@ -48,8 +48,8 @@ RUN conda install --quiet --yes \
...
@@ -48,8 +48,8 @@ RUN conda install --quiet --yes \
'r-base=3.6.3'
\
'r-base=3.6.3'
\
'r-caret=6.0*'
\
'r-caret=6.0*'
\
'r-crayon=1.3*'
\
'r-crayon=1.3*'
\
'r-devtools=2.
2
*'
\
'r-devtools=2.
3
*'
\
'r-forecast=8.1
1
*'
\
'r-forecast=8.1
2
*'
\
'r-hexbin=1.28*'
\
'r-hexbin=1.28*'
\
'r-htmltools=0.4*'
\
'r-htmltools=0.4*'
\
'r-htmlwidgets=1.5*'
\
'r-htmlwidgets=1.5*'
\
...
...
datascience-notebook/test/test_julia.py
0 → 100644
View file @
bfb2be71
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import
logging
import
pytest
LOGGER
=
logging
.
getLogger
(
__name__
)
def
test_julia
(
container
):
"""Basic julia test"""
LOGGER
.
info
(
f
"Test that julia is correctly installed ..."
)
running_container
=
container
.
run
(
tty
=
True
,
command
=
[
"start.sh"
,
"bash"
,
"-c"
,
"sleep infinity"
]
)
command
=
f
"julia --version"
cmd
=
running_container
.
exec_run
(
command
)
output
=
cmd
.
output
.
decode
(
"utf-8"
)
assert
cmd
.
exit_code
==
0
,
f
"Command {command} failed {output}"
LOGGER
.
debug
(
output
)
r-notebook/Dockerfile
View file @
bfb2be71
...
@@ -28,8 +28,8 @@ RUN conda install --quiet --yes \
...
@@ -28,8 +28,8 @@ RUN conda install --quiet --yes \
'r-base=3.6.3'
\
'r-base=3.6.3'
\
'r-caret=6.0*'
\
'r-caret=6.0*'
\
'r-crayon=1.3*'
\
'r-crayon=1.3*'
\
'r-devtools=2.
2
*'
\
'r-devtools=2.
3
*'
\
'r-forecast=8.1
1
*'
\
'r-forecast=8.1
2
*'
\
'r-hexbin=1.28*'
\
'r-hexbin=1.28*'
\
'r-htmltools=0.4*'
\
'r-htmltools=0.4*'
\
'r-htmlwidgets=1.5*'
\
'r-htmlwidgets=1.5*'
\
...
...
scipy-notebook/Dockerfile
View file @
bfb2be71
...
@@ -16,19 +16,20 @@ USER $NB_UID
...
@@ -16,19 +16,20 @@ USER $NB_UID
# Install Python 3 packages
# Install Python 3 packages
RUN
conda
install
--quiet
--yes
\
RUN
conda
install
--quiet
--yes
\
'beautifulsoup4=4.
8
.*'
\
'beautifulsoup4=4.
9
.*'
\
'conda-forge::blas=*=openblas'
\
'conda-forge::blas=*=openblas'
\
'bokeh=2.0.*'
\
'bokeh=2.0.*'
\
'bottleneck=1.3.*'
\
'bottleneck=1.3.*'
\
'cloudpickle=1.
3
.*'
\
'cloudpickle=1.
4
.*'
\
'cython=0.29.*'
\
'cython=0.29.*'
\
'dask=2.1
4
.*'
\
'dask=2.1
5
.*'
\
'dill=0.3.*'
\
'dill=0.3.*'
\
'h5py=2.10.*'
\
'h5py=2.10.*'
\
'hdf5=1.10.*'
\
'hdf5=1.10.*'
\
'ipywidgets=7.5.*'
\
'ipywidgets=7.5.*'
\
'ipympl=0.5.*'
\
'ipympl=0.5.*'
\
'matplotlib-base=3.2.*'
\
'matplotlib-base=3.2.*'
\
# numba update to 0.49 fails resolving deps.
'numba=0.48.*' \
'numba=0.48.*' \
'numexpr=2.7.*' \
'numexpr=2.7.*' \
'pandas=1.0.*' \
'pandas=1.0.*' \
...
@@ -44,7 +45,7 @@ RUN conda install --quiet --yes \
...
@@ -44,7 +45,7 @@ RUN conda install --quiet --yes \
'sympy=1.5.*' \
'sympy=1.5.*' \
'vincent=0.4.*' \
'vincent=0.4.*' \
'widgetsnbextension=3.5.*'\
'widgetsnbextension=3.5.*'\
'xlrd'
\
'xlrd
=1.2.*
' \
&& \
&& \
conda clean --all -f -y && \
conda clean --all -f -y && \
# Activate ipywidgets extension in the environment that runs the notebook server
# Activate ipywidgets extension in the environment that runs the notebook server
...
...
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