fix(workflow): add progress output to Docker build for better visibility
This commit is contained in:
parent
308ed58467
commit
7d42d208b5
1 changed files with 2 additions and 3 deletions
|
|
@ -80,11 +80,12 @@ jobs:
|
||||||
|
|
||||||
docker_args=(
|
docker_args=(
|
||||||
build
|
build
|
||||||
.
|
|
||||||
--file Dockerfile
|
--file Dockerfile
|
||||||
|
--progress=plain
|
||||||
--target app
|
--target app
|
||||||
--label "org.opencontainers.image.source=${REPOSITORY_URL}"
|
--label "org.opencontainers.image.source=${REPOSITORY_URL}"
|
||||||
--label "org.opencontainers.image.revision=${GITHUB_SHA}"
|
--label "org.opencontainers.image.revision=${GITHUB_SHA}"
|
||||||
|
.
|
||||||
)
|
)
|
||||||
|
|
||||||
for tag in "${tags[@]}"; do
|
for tag in "${tags[@]}"; do
|
||||||
|
|
@ -96,5 +97,3 @@ jobs:
|
||||||
for tag in "${tags[@]}"; do
|
for tag in "${tags[@]}"; do
|
||||||
docker push "${tag}"
|
docker push "${tag}"
|
||||||
done
|
done
|
||||||
|
|
||||||
# The single OCI image contains the public API and the admin dashboard runtime.
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue