2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

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
commit 3bb0f7dde0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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