Skip to content

Commit

Permalink
Merge pull request jupyterhub#2213 from consideRatio/pr/bump-singleus…
Browse files Browse the repository at this point in the history
…er-sample-for-1.0.0-release

singleuser-sample: update base image
  • Loading branch information
consideRatio authored May 19, 2021
2 parents 4c068ac + 7c9bac0 commit 4c460f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test-docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ jobs:
python-version: "3.8"

- name: Install chartpress
run: pip install chartpress
run: |
# FIXME: six is required by docker 5.0.0 but isn't explicitly required
# https://github.com/docker/docker-py/issues/2807
#
pip install chartpress six
- name: Set up QEMU (for docker buildx)
uses: docker/setup-qemu-action@c308fdd69d26ed66f4506ebd74b180abe5362145 # dependabot updates to latest release
Expand Down
7 changes: 3 additions & 4 deletions images/singleuser-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM jupyter/base-notebook:016833b15ceb
FROM jupyter/base-notebook:cf9a75c29789
# Built from... https://hub.docker.com/r/jupyter/base-notebook/
# https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile
# Built from... Ubuntu 18.04
# Built from... Ubuntu 20.04

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

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

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

0 comments on commit 4c460f8

Please sign in to comment.