29 lines
1.0 KiB
Docker
29 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" \
|
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/etcd/bin:$PATH"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip jq procps tar
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "etcd" "3.5.1-0" --checksum 912653e5c0879fd27c8bb0327bea171d7ae504611ec0a9c8fcc2ec6184766a63
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/etcd/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="etcd" \
|
|
BITNAMI_IMAGE_VERSION="3.5.1-debian-10-r30" \
|
|
ETCDCTL_API="3"
|
|
|
|
EXPOSE 2379 2380
|
|
|
|
WORKDIR /opt/bitnami/etcd
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/etcd/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/etcd/run.sh" ]
|