Skip to content

Commit df38360

Browse files
committed
fix LegacyKeyValueFormat warnings
> LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" > LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value"
1 parent ba05550 commit df38360

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

create_dockerfile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ create_dockerfile() {
66
cp -r "src/pkg/kamailio/deb/${dist}/" "${dist}/debian/"
77
cat >"${dist}"/Dockerfile <<EOF
88
FROM ${docker_tag}
9-
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
9+
LABEL org.opencontainers.image.authors="Victor Seva <linuxmaniac@torreviejawireless.org>"
1010
1111
# Important! Update this no-op ENV variable when this Dockerfile
1212
# is updated with the current date. It will force refresh of all
1313
# of the base images and things like 'apt-get update' won't be using
1414
# old cached versions when the Dockerfile is built.
15-
ENV REFRESHED_AT ${DATE}
15+
ENV REFRESHED_AT="${DATE}"
1616
1717
EOF
1818

0 commit comments

Comments
 (0)