From 4d77c95a645de0d173e7fc5cb8276755ec608b1c Mon Sep 17 00:00:00 2001 From: Mischa Taylor Date: Mon, 4 Sep 2023 15:03:05 -0400 Subject: [PATCH] Move label to correct section --- aws-cli/Containerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/aws-cli/Containerfile b/aws-cli/Containerfile index 3d9b948..859c96c 100644 --- a/aws-cli/Containerfile +++ b/aws-cli/Containerfile @@ -1,11 +1,6 @@ ARG CONTAINER_REGISTRY=docker.io FROM $CONTAINER_REGISTRY/amazonlinux:2 as installer -LABEL \ - org.opencontainers.image.source="https://github.com/boxcutter/oci" \ - org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.description="AWS command-line interface." - COPY aws-cli.key /tmp/aws-cli/aws-cli.key RUN yum update -y \ @@ -37,6 +32,12 @@ RUN yum update -y \ && yum clean all FROM amazonlinux:2 + +LABEL \ + org.opencontainers.image.source="https://github.com/boxcutter/oci" \ + org.opencontainers.image.licenses="Apache-2.0" \ + org.opencontainers.image.description="AWS command-line interface." + RUN yum update -y \ && yum install -y less groff \ && yum clean all