diff --git a/.github/workflows/docker-image-build-to-test.yml b/.github/workflows/docker-image-build-to-test.yml new file mode 100644 index 0000000..92d3fd5 --- /dev/null +++ b/.github/workflows/docker-image-build-to-test.yml @@ -0,0 +1,18 @@ +name: Docker Image Build to Test + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image to test + run: docker build . --file Dockerfile --tag bentley-app:$(date +%s) --target builder