Fix Docker build command to use default Dockerfile

This commit is contained in:
thuanle
2025-07-11 12:13:16 +07:00
parent 3100015157
commit 8f9fc37c09

View File

@@ -33,8 +33,7 @@ jobs:
run: | run: |
echo "Building image for architecture: ${{ matrix.arch }}" echo "Building image for architecture: ${{ matrix.arch }}"
docker build \ docker build . \
-f Dockerfile \
-t ${{ env.IMAGE_PATH }}:${{ matrix.arch }}-latest \ -t ${{ env.IMAGE_PATH }}:${{ matrix.arch }}-latest \
--label "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \ --label "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \
--label "commit_sha=${{ github.sha }}" \ --label "commit_sha=${{ github.sha }}" \