Update docker_test_build.yml #108
Workflow file for this run
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 test Docker image | |
| on: | |
| push: | |
| branches: [ "master" , "dockerfile-fix"] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build the Docker image | |
| run: | | |
| docker build . --file Dockerfile -t seqsender | |
| docker images | |
| docker image inspect seqsender | |
| docker run --rm seqsender seqsender test_network_connection |