27 lines
1.0 KiB
Docker
27 lines
1.0 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 libssl1.1 procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "redis" "6.0.12-0" --checksum e8c4d9fc5d59fb7a374b4753c1b1ac778bd1c0f0c1fa2df1c7944add51890f8a
|
|
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/redis-cluster/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="redis-cluster" \
|
|
BITNAMI_IMAGE_VERSION="6.0.12-debian-10-r2" \
|
|
PATH="/opt/bitnami/redis/bin:/opt/bitnami/common/bin:$PATH"
|
|
|
|
EXPOSE 6379
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/redis-cluster/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/redis-cluster/run.sh" ]
|