diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 00000000..b21f8ca1 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,18 @@ +name: docker + +on: + pull_request: + paths: + - 'planet-notebook-docker/**' + +jobs: + build: + name: Build Docker + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v5 + - name: Build Image + run: | + docker build -t planet-notebooks planet-notebook-docker/ + diff --git a/planet-notebook-docker/Dockerfile b/planet-notebook-docker/Dockerfile index 04276e61..b855c436 100644 --- a/planet-notebook-docker/Dockerfile +++ b/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