Merge pull request #1480 from SchrodingersGat/docker-build-fix

Fix directory
This commit is contained in:
Oliver
2021-04-18 20:24:16 +10:00
committed by GitHub

View File

@ -13,6 +13,9 @@ jobs:
steps: steps:
- name: Check out repo - name: Check out repo
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: cd
run: |
cd docker
- name: Push to Docker Hub - name: Push to Docker Hub
uses: docker/build-push-action@v1 uses: docker/build-push-action@v1
with: with:
@ -20,4 +23,4 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
repository: inventree/inventree repository: inventree/inventree
tag_with_ref: true tag_with_ref: true
dockerfile: docker/Dockerfile dockerfile: ./Dockerfile