38 lines
1.7 KiB
Docker
38 lines
1.7 KiB
Docker
FROM docker.io/bitnami/minideb:bullseye
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/opt/bitnami/rabbitmq/.rabbitmq" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-11" \
|
|
OS_NAME="linux" \
|
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/erlang/bin:/opt/bitnami/rabbitmq/sbin:$PATH"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip libc6 libgcc-s1 libssl1.1 libstdc++6 libtinfo6 locales procps tar zlib1g
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum da4a2f759ccc57c100d795b71ab297f48b31c4dd7578d773d963bbd49c42bd7b
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "erlang" "24.3.4-0" --checksum 1d1491a2dd0c467d9e968c85c5c7014fef59d521fabdda67f9f9583ed1030547
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "rabbitmq" "3.10.5-0" --checksum f3ac8c650ec0b77136123f19708bf195cfbd97f8b820124d4cc56cde08680e09
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
|
RUN chmod g+rwX /opt/bitnami
|
|
RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
|
|
RUN update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX && \
|
|
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales
|
|
RUN echo 'en_GB.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
|
RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/rabbitmq/postunpack.sh
|
|
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
|
|
ENV APP_VERSION="3.10.5" \
|
|
BITNAMI_APP_NAME="rabbitmq" \
|
|
LANG="en_US.UTF-8" \
|
|
LANGUAGE="en_US:en"
|
|
|
|
EXPOSE 4369 5551 5552 5671 5672 15671 15672 25672
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/rabbitmq/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/rabbitmq/run.sh" ]
|