Skip to content

Commit

Permalink
fix dockerfile path
Browse files Browse the repository at this point in the history
  • Loading branch information
KenyonY committed May 27, 2023
1 parent af3a05f commit 570f583
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
file: ./docker/Dockerfile
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ twine:
@rm -rf dist/*

build:
docker build --tag $(image) -f docker/Dockerfile .
docker build --tag $(image) .

build-push:
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag $(image) -f docker/Dockerfile .
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag $(image) .

pull:
docker pull $(image)
Expand Down

1 comment on commit 570f583

@vercel
Copy link

@vercel vercel bot commented on 570f583 May 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.