We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f27e10 commit d382c07Copy full SHA for d382c07
.github/workflows/build.yml
@@ -140,7 +140,10 @@ jobs:
140
if [ "$RUN_TESTS" ]; then echo "Proceeding to run tests."; else echo 'Skipping test verification.'; fi
141
- name: Build tfb dockerfile
142
if: ${{ env.RUN_TESTS }}
143
- run: docker build -t techempower/tfb - < ./Dockerfile;
+ uses: mattes/cached-docker-build-action@v1
144
+ with:
145
+ args: " --file ./Dockerfile --tag techempower/tfb ."
146
+ cache_key: "${{ hashFiles('./Dockerfile') }}"
147
- name: Stop services
148
# Stop services that would claim ports we may need
149
run: |
0 commit comments