Skip to content

Commit 11f1caf

Browse files
committed
Resolve warnings at end of build process concerninge legacy label format
With newer versions of Docker, the following warning is generated: LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format (line 2) The behavior is confirmed in Docker 29.3.0. This commit resolves the warning.
1 parent 6afe4eb commit 11f1caf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pacstall-docker-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ fi
307307
function cat_built_dock {
308308
cat > ${built_dock} << EOF
309309
FROM ${base_darch}${base_distro}
310-
LABEL org.opencontainers.image.description "Contains pacstall:${imgver} from ${dateiniso}"
310+
LABEL org.opencontainers.image.description="Contains pacstall:${imgver} from ${dateiniso}"
311311
312312
SHELL ["/bin/bash", "-l", "-c"]
313313
ARG DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)