1.0.2-scratch-r4 release
This commit is contained in:
parent
317eea38e5
commit
d6d0ec999e
|
|
@ -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/rmq-default-credential-updater-1.0.2-150-linux-amd64-debian-11.tar.gz && \
|
||||
echo "1ea594dcd7a09b8132b4b2080bee3398f4fc9c7b9f5138600b407bfa7d9bbbd0 /tmp/bitnami/pkg/cache/rmq-default-credential-updater-1.0.2-150-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/rmq-default-credential-updater-1.0.2-150-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/rmq-default-credential-updater-1.0.2-150-linux-amd64-debian-11.tar.gz
|
||||
|
||||
######
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY prebuildfs /
|
||||
COPY rootfs /
|
||||
COPY --from=builder /opt/bitnami/rmq-default-credential-updater/bin/default-user-credential-updater /default-user-credential-updater
|
||||
|
||||
USER 1001
|
||||
|
||||
ENTRYPOINT [ "/default-user-credential-updater" ]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
{
|
||||
"rmq-default-credential-updater": {
|
||||
"digest": "84bf340de4a805088f0c7e68d78a11ce5c063ddd11d8a0fa3b9f2a63fa9043df",
|
||||
"type": "BLACKSMITH",
|
||||
"version": "1.0.2"
|
||||
"arch": "amd64",
|
||||
"digest": "1ea594dcd7a09b8132b4b2080bee3398f4fc9c7b9f5138600b407bfa7d9bbbd0",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.0.2-150"
|
||||
}
|
||||
}
|
||||
|
|
@ -28,7 +28,7 @@ $ docker run --name rmq-default-credential-updater bitnami/rmq-default-credentia
|
|||
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/).
|
||||
|
||||
|
||||
- [`1`, `1-scratch`, `1.0.2`, `1.0.2-scratch-r3`, `latest` (1/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-rmq-default-credential-updater/blob/1.0.2-scratch-r3/1/scratch/Dockerfile)
|
||||
- [`1`, `1-scratch`, `1.0.2`, `1.0.2-scratch-r4`, `latest` (1/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-rmq-default-credential-updater/blob/1.0.2-scratch-r4/1/scratch/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/rmq-default-credential-updater GitHub repo](https://github.com/bitnami/bitnami-docker-rmq-default-credential-updater).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue