From 36ca09962272ab9137d729e75bb14adf81bb591e Mon Sep 17 00:00:00 2001 From: Marco Braga Date: Mon, 23 Oct 2023 15:48:37 -0300 Subject: [PATCH] fix container image expiration period --- hack/Containerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hack/Containerfile b/hack/Containerfile index b561050..cce8d03 100644 --- a/hack/Containerfile +++ b/hack/Containerfile @@ -2,12 +2,12 @@ FROM quay.io/centos/centos:stream9 ARG QUAY_EXPIRATION=1w ARG TARGETARCH=amd64 -ARG TARGETPLATFORM=linux-amd64 +ARG TARGETPLATFORM="linux-amd64" ARG TARGETOS=linux -LABEL quay.expires-after=${QUAY_EXPIRATION} \ - architecture=$TARGETARCH \ - platform=$TARGETPLATFORM \ - os=$TARGETOS +LABEL quay.expires-after="${QUAY_EXPIRATION}" \ + architecture="$TARGETARCH" \ + platform="$TARGETPLATFORM" \ + os="$TARGETOS" ENV ANSIBLE_UNSAFE_WRITES=1 WORKDIR /opt/okd-installer