mirror of
https://github.com/bitnami/containers.git
synced 2026-03-12 14:57:54 +08:00
25 lines
1010 B
Docker
25 lines
1010 B
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-10" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-1" --checksum 16f1a317859b06ae82e816b30f98f28b4707d18fe6cc3881bff535192a7715dc
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "chartmuseum" "0.13.1-3" --checksum d82be15e924205f0fcc254673542c80a9361fcf0a13e9ba178ca25b6fee99b06
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/chartmuseum/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="chartmuseum" \
|
|
BITNAMI_IMAGE_VERSION="0.13.1-debian-10-r283" \
|
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/chartmuseum/bin:$PATH"
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/chartmuseum/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/chartmuseum/run.sh" ]
|