Skip to content

Commit

Permalink
Fixed docker build path parameter
Browse files Browse the repository at this point in the history
Updated the build path to specify the specific docker file to run
  • Loading branch information
derkkila authored May 21, 2020
1 parent 8f47592 commit a1dbe82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build the admin_frontend Docker image
run: docker build /home/runner/work/buttercup_store/buttercup_store/admin_frontend/Dockerfile --file Dockerfile --tag derkkila/admin_frontend:$(date +%s)
run: docker build -f admin_frontend/Dockerfile --tag derkkila/admin_frontend:$(date +%s)
- name: Push admin_frontend to Dockerhub
run: docker push derkkila/admin_frontend:$(date +%s)

0 comments on commit a1dbe82

Please sign in to comment.