mirror of
https://github.com/bitnami/containers.git
synced 2026-04-02 15:27:45 +08:00
[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:
49
bitnami/contour-operator/1.23/scratch/Dockerfile
Normal file
49
bitnami/contour-operator/1.23/scratch/Dockerfile
Normal 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" ]
|
||||
4
bitnami/contour-operator/1.23/scratch/docker-compose.yml
Normal file
4
bitnami/contour-operator/1.23/scratch/docker-compose.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
version: '2'
|
||||
services:
|
||||
contour-operator:
|
||||
image: docker.io/bitnami/contour-operator:1.23
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"contour-operator": {
|
||||
"arch": "amd64",
|
||||
"digest": "d96249886c2f248eac6cbf7ccf2e1de5ac40585440f762e6e84dd59be3896591",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.23.0-0"
|
||||
}
|
||||
}
|
||||
@@ -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
5
bitnami/contour-operator/1.23/scratch/tags-info.yaml
Normal file
5
bitnami/contour-operator/1.23/scratch/tags-info.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
rolling-tags:
|
||||
- "1.23"
|
||||
- "1.23-scratch"
|
||||
- "1.23.0"
|
||||
- "latest"
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user