39 lines
1.7 KiB
Docker
39 lines
1.7 KiB
Docker
FROM docker.io/bitnami/minideb:bullseye
|
|
ENV HOME="/" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-11" \
|
|
OS_NAME="linux"
|
|
|
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
|
org.opencontainers.image.ref.name="1.13.1-debian-11-r1" \
|
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/consul" \
|
|
org.opencontainers.image.title="consul" \
|
|
org.opencontainers.image.vendor="VMware, Inc." \
|
|
org.opencontainers.image.version="1.13.1"
|
|
|
|
COPY prebuildfs /
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip iproute2 procps tar zlib1g-dev
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.3-152" --checksum 7909504f3232654c427681ecc8ed4b8599a2df0f17f26ff769a83ed167d05b69
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-153" --checksum d3ae0109be24e8bc56f97359b8290b91243454de946dd60bd8520a0896a88449
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "consul" "1.13.1-0" --checksum acb4de3495b6b72f257e786262420cbae5c517501ab4e1b9218c63db4caeb9e2
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/consul/postunpack.sh
|
|
ENV APP_VERSION="1.13.1" \
|
|
BITNAMI_APP_NAME="consul" \
|
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/consul/bin:$PATH"
|
|
|
|
EXPOSE 8300 8301 8500 8600
|
|
|
|
EXPOSE 8301/udp 8600/udp
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/consul/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/consul/run.sh" ]
|