Skip to content

Commit e5a6ec5

Browse files
committed
fix: corrigir comando de build do Docker para remover ponto final desnecessário
1 parent 6d5e670 commit e5a6ec5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
DOCKER_BUILDKIT: 1
3030
run: |
31-
docker build -f ./docker/Dockerfile . \
31+
docker build -f ./docker/Dockerfile \
3232
-t ghcr.io/${{ github.repository_owner }}/phlow:dev-glibc \
3333
-t ghcr.io/${{ github.repository_owner }}/phlow:dev \
3434
-t ghcr.io/${{ github.repository_owner }}/phlow:${{ needs.tag.outputs.tag }} .
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
DOCKER_BUILDKIT: 1
5252
run: |
53-
docker build -f ./docker/Dockerfile . \
53+
docker build -f ./docker/Dockerfile \
5454
-t lowcarboncode/phlow:dev-glibc \
5555
-t lowcarboncode/phlow:dev \
5656
-t lowcarboncode/phlow:${{ needs.tag.outputs.tag }} .

0 commit comments

Comments
 (0)