28 lines
1.2 KiB
Docker
28 lines
1.2 KiB
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 libc6 procps tar zlib1g
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.10-0" --checksum 68b909cfb5c98625e7d0db5c6eb82a34eca9b8940ada38b7eaa0c238bb510b57
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wavefront-proxy" "9.5.0-3" --checksum 13e1eb0b7d1cf8668401e3079a329609b7962c720826abf51c8ff69462e78eeb
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="wavefront-proxy" \
|
|
BITNAMI_IMAGE_VERSION="9.5.0-debian-10-r20" \
|
|
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
|
|
|
|
EXPOSE 2878
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/wavefront-proxy/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/wavefront-proxy/scripts/run.sh" ]
|