Skip to content

Commit 4c460f8

Browse files
authored
Merge pull request #2213 from consideRatio/pr/bump-singleuser-sample-for-1.0.0-release
singleuser-sample: update base image
2 parents 4c068ac + 7c9bac0 commit 4c460f8

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/test-docker-build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ jobs:
3535
python-version: "3.8"
3636

3737
- name: Install chartpress
38-
run: pip install chartpress
38+
run: |
39+
# FIXME: six is required by docker 5.0.0 but isn't explicitly required
40+
# https://github.com/docker/docker-py/issues/2807
41+
#
42+
pip install chartpress six
3943
4044
- name: Set up QEMU (for docker buildx)
4145
uses: docker/setup-qemu-action@c308fdd69d26ed66f4506ebd74b180abe5362145 # dependabot updates to latest release

images/singleuser-sample/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
FROM jupyter/base-notebook:016833b15ceb
1+
FROM jupyter/base-notebook:cf9a75c29789
22
# Built from... https://hub.docker.com/r/jupyter/base-notebook/
33
# https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile
4-
# Built from... Ubuntu 18.04
4+
# Built from... Ubuntu 20.04
55

66
# VULN_SCAN_TIME=2021-04-13_00:03:33
77

8-
# The jupyter/docker-stacks images contains jupyterhub, jupyterlab and the
9-
# jupyterlab-hub extension already.
8+
# The jupyter/docker-stacks images contains jupyterhub and jupyterlab already.
109

1110
# Example install of git and nbgitpuller.
1211
# NOTE: git is already available in the jupyter/minimal-notebook image.

0 commit comments

Comments
 (0)