0.18.0-scratch-r2 release

This commit is contained in:
Bitnami Bot
2022-06-29 16:15:56 +00:00
committed by Bitnami Containers
parent 39b3fe5bdf
commit 0add35d625
3 changed files with 25 additions and 5 deletions

View File

@@ -1,7 +1,25 @@
FROM scratch
FROM bitnami/minideb:bullseye as builder
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates gzip tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/sealed-secrets-0.18.0-150-linux-amd64-debian-11.tar.gz && \
echo "8a3fea19d67a4acce5fc97ab2976ffd9c042417c13f84a60cfd7490355880fd5 /tmp/bitnami/pkg/cache/sealed-secrets-0.18.0-150-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/sealed-secrets-0.18.0-150-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/sealed-secrets-0.18.0-150-linux-amd64-debian-11.tar.gz
######
FROM scratch
COPY prebuildfs /
COPY rootfs /
COPY --from=builder /opt/bitnami/sealed-secrets/bin/controller /controller
COPY --from=builder /opt/bitnami/sealed-secrets/bin/kubeseal /kubeseal
USER 1001
ENTRYPOINT [ "/controller" ]

View File

@@ -1,7 +1,9 @@
{
"sealed-secrets": {
"digest": "2c7a5b8615373d41f5a50cad913eaff46ccb85d82d76d406643fda098fe213a2",
"type": "BLACKSMITH",
"version": "0.18.0"
"arch": "amd64",
"digest": "8a3fea19d67a4acce5fc97ab2976ffd9c042417c13f84a60cfd7490355880fd5",
"distro": "debian-11",
"type": "NAMI",
"version": "0.18.0-150"
}
}

View File

@@ -28,7 +28,7 @@ $ docker run --name sealed-secrets bitnami/sealed-secrets:latest
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`0`, `0-scratch`, `0.18.0`, `0.18.0-scratch-r1`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-sealed-secrets/blob/0.18.0-scratch-r1/0/scratch/Dockerfile)
* [`0`, `0-scratch`, `0.18.0`, `0.18.0-scratch-r2`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-sealed-secrets/blob/0.18.0-scratch-r2/0/scratch/Dockerfile)
Subscribe to project updates by watching the [bitnami/sealed-secrets GitHub repo](https://github.com/bitnami/bitnami-docker-sealed-secrets).