fix(workflow): add progress output to Docker build for better visibility

This commit is contained in:
Kyush 2026-04-27 18:19:57 +09:00
commit 7d42d208b5

View file

@ -80,11 +80,12 @@ jobs:
docker_args=(
build
.
--file Dockerfile
--progress=plain
--target app
--label "org.opencontainers.image.source=${REPOSITORY_URL}"
--label "org.opencontainers.image.revision=${GITHUB_SHA}"
.
)
for tag in "${tags[@]}"; do
@ -96,5 +97,3 @@ jobs:
for tag in "${tags[@]}"; do
docker push "${tag}"
done
# The single OCI image contains the public API and the admin dashboard runtime.