0.12.0-scratch-r8 release

This commit is contained in:
Bitnami Bot
2022-06-29 18:06:29 +00:00
committed by Bitnami Containers
parent ce1d979f7c
commit bb87e7e70a
3 changed files with 24 additions and 5 deletions

View File

@@ -1,7 +1,24 @@
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/oras-0.12.0-150-linux-amd64-debian-11.tar.gz && \
echo "89a11bcb492e1d64ef80139b41d3ce3aa494c23359fc6b0458d320a2f3ad22b9 /tmp/bitnami/pkg/cache/oras-0.12.0-150-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/oras-0.12.0-150-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/oras-0.12.0-150-linux-amd64-debian-11.tar.gz
######
FROM scratch
COPY prebuildfs /
COPY rootfs /
COPY --from=builder /opt/bitnami/oras/bin/oras /oras
USER 1001
ENTRYPOINT [ "/oras" ]

View File

@@ -1,7 +1,9 @@
{
"oras": {
"digest": "bed0b8cc60f0552e186874ca0628ff77bed43b90dd0994b4feea189abe58dbbd",
"type": "BLACKSMITH",
"version": "0.12.0"
"arch": "amd64",
"digest": "89a11bcb492e1d64ef80139b41d3ce3aa494c23359fc6b0458d320a2f3ad22b9",
"distro": "debian-11",
"type": "NAMI",
"version": "0.12.0-150"
}
}

View File

@@ -30,7 +30,7 @@ Non-root container images add an extra layer of security and are generally recom
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.12.0`, `0.12.0-scratch-r7`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-oras/blob/0.12.0-scratch-r7/0/scratch/Dockerfile)
* [`0`, `0-scratch`, `0.12.0`, `0.12.0-scratch-r8`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-oras/blob/0.12.0-scratch-r8/0/scratch/Dockerfile)
Subscribe to project updates by watching the [bitnami/oras GitHub repo](https://github.com/bitnami/bitnami-docker-oras).