docker ci: set working-directory

Looks like the Dockerfile expects entrypoint.sh to be in the current working directory.
This commit is contained in:
Alex Osborne
2021-12-13 14:01:45 +09:00
committed by GitHub
parent bad8bbd1ee
commit b73a8d0356
+2 -1
View File
@@ -15,4 +15,5 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file docker/Dockerfile --tag heritrix:$(date +%s)
run: docker build . --file Dockerfile --tag heritrix:$(date +%s)
working-directory: docker