[bitnami/contour-operator] Release 1.23.0-scratch-r0 (#12521)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2022-11-04 15:39:11 +01:00
committed by GitHub
parent 4100e26119
commit 5c01414174
7 changed files with 3935 additions and 1 deletions

View File

@@ -0,0 +1,49 @@
FROM bitnami/minideb:bullseye as builder
ARG TARGETARCH
ENV OS_ARCH="${TARGETARCH:-amd64}"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates curl
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"contour-operator-1.23.0-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
fi && \
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
done
######
FROM scratch
ARG TARGETARCH
ENV OS_ARCH="${TARGETARCH:-amd64}"
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="1.23.0-scratch-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/contour-operator" \
org.opencontainers.image.title="contour-operator" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="1.23.0"
COPY prebuildfs /
COPY rootfs /
COPY --from=builder /opt/bitnami/contour-operator/bin/contour-operator /contour-operator
USER 1001
ENTRYPOINT [ "/contour-operator" ]

View File

@@ -0,0 +1,4 @@
version: '2'
services:
contour-operator:
image: docker.io/bitnami/contour-operator:1.23

View File

@@ -0,0 +1,9 @@
{
"contour-operator": {
"arch": "amd64",
"digest": "d96249886c2f248eac6cbf7ccf2e1de5ac40585440f762e6e84dd59be3896591",
"distro": "debian-11",
"type": "NAMI",
"version": "1.23.0-0"
}
}

View File

@@ -0,0 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
rolling-tags:
- "1.23"
- "1.23-scratch"
- "1.23.0"
- "latest"

View File

@@ -1,4 +1,4 @@
version: '2'
services:
contour-operator:
image: docker.io/bitnami/contour-operator:1.22
image: docker.io/bitnami/contour-operator:1.23