Updated README.md #17
This file contains hidden or 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: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| - name: Build the Docker image | |
| run: docker build . --file Dockerfile --tag pyramid-prepare-data | |
| # Testing removed temporarily. | |
| # To test successfully, an appropriate dataset will need to be downloaded from DAFNI | |
| # and mounted properly into the Docker container. | |
| #- name: test | |
| # run: docker run -v "$(pwd)/data:/data" pyramid-prepare-data |