Skip to content

Commit 91d993d

Browse files
authored
Add Github workflow to build docker (#397)
1 parent 15c4e77 commit 91d993d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/docker.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 2025-09-15 build
2-
# https://github.com/jupyter/docker-stacks/wiki/minimal-notebook-414b5d749704
2+
# https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-minimal-notebook
33
FROM quay.io/jupyter/minimal-notebook:8515ad39f045
44

55
# Copy requirements file for package installation

0 commit comments

Comments
 (0)