fix: pin Docker.jupyter to notebook 6.x.x #344
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Image | |
on: | |
push: {} | |
pull_request: {} | |
schedule: | |
# Run daily | |
- cron: "6 4 * * *" | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- if: github.event_name == 'push' | |
name: Run docker compose build with local packages | |
run: | | |
docker compose build --build-arg dev_mode="true" | |
- if: github.event_name == 'schedule' | |
name: Run docker compose build with latest release | |
run: | | |
docker compose build |