2.4.6-scratch-r1 release
This commit is contained in:
parent
a1513a3d7d
commit
93ebf65d44
|
|
@ -1,8 +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/kubeapps-asset-syncer-2.4.6-0-linux-amd64-debian-11.tar.gz && \
|
||||
echo "48d7231f27f9e7cea49aabb2fd09d1ba115c49100e228bf3c253a34b8285c2f5 /tmp/bitnami/pkg/cache/kubeapps-asset-syncer-2.4.6-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/kubeapps-asset-syncer-2.4.6-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/kubeapps-asset-syncer-2.4.6-0-linux-amd64-debian-11.tar.gz
|
||||
|
||||
######
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY prebuildfs /
|
||||
COPY rootfs /
|
||||
COPY --from=builder /opt/bitnami/kubeapps-asset-syncer/bin/asset-syncer /asset-syncer
|
||||
|
||||
USER 1001
|
||||
|
||||
CMD [ "/asset-syncer" ]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
{
|
||||
"kubeapps-asset-syncer": {
|
||||
"digest": "8df06e2d3364120e8078a808328b311990bfa71654d15feb98096e4093d121fc",
|
||||
"type": "BLACKSMITH",
|
||||
"version": "2.4.6"
|
||||
"arch": "amd64",
|
||||
"digest": "48d7231f27f9e7cea49aabb2fd09d1ba115c49100e228bf3c253a34b8285c2f5",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.4.6-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -33,7 +33,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/).
|
||||
|
||||
|
||||
* [`2`, `2-scratch`, `2.4.6`, `2.4.6-scratch-r0`, `latest` (2/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-asset-syncer/blob/2.4.6-scratch-r0/2/scratch/Dockerfile)
|
||||
* [`2`, `2-scratch`, `2.4.6`, `2.4.6-scratch-r1`, `latest` (2/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-kubeapps-asset-syncer/blob/2.4.6-scratch-r1/2/scratch/Dockerfile)
|
||||
|
||||
## Configuration
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue