We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c4e77 commit 91d993dCopy full SHA for 91d993d
.github/workflows/docker.yml
@@ -0,0 +1,18 @@
1
+name: docker
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - 'planet-notebook-docker/**'
7
8
+jobs:
9
+ build:
10
+ name: Build Docker
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v5
15
+ - name: Build Image
16
+ run: |
17
+ docker build -t planet-notebooks planet-notebook-docker/
18
planet-notebook-docker/Dockerfile
@@ -1,5 +1,5 @@
# 2025-09-15 build
-# https://github.com/jupyter/docker-stacks/wiki/minimal-notebook-414b5d749704
+# https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-minimal-notebook
FROM quay.io/jupyter/minimal-notebook:8515ad39f045
# Copy requirements file for package installation
0 commit comments