Skip to content

Commit

Permalink
fix container image expiration period
Browse files Browse the repository at this point in the history
  • Loading branch information
mtulio committed Oct 23, 2023
1 parent 6934b99 commit 36ca099
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hack/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 36ca099

Please sign in to comment.