From a107b4b76ec4828474f7fb95b20d096a909c0cc0 Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 17 May 2022 11:24:15 -0500 Subject: [PATCH] Explicitly set progress to plain for easier debugging, label the final stage of the build --- Dockerfile | 2 +- build.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec82848..3a21ae1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN apk add curl &&\ ln -s "forge-${MINECRAFT_VERSION}-${FORGE_VERSION}.jar" server.jar # Stuff them in a smaller container with fewer layers -FROM alpine:latest +FROM alpine:latest AS final RUN apk add bash rsync screen &&\ apk add "${JRE_VERSION}" WORKDIR /minecraft diff --git a/build.sh b/build.sh index f663703..0690b6f 100755 --- a/build.sh +++ b/build.sh @@ -46,6 +46,7 @@ for mc in ${mcversions[@]}; do --build-arg JRE_VERSION="$jre" \ --no-cache \ --platform linux/amd64 \ + --progress plain \ --tag "$tag" \ --push \ .