repo2docker #94
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
# Builds the repository using repo2docker | |
--- | |
name: repo2docker | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: repo2docker install | |
run: | | |
pip install six chardet | |
pip install --upgrade jupyter-repo2docker | |
- name: Build container | |
run: repo2docker --no-run . |