mirror of
https://github.com/bitnami/containers.git
synced 2026-03-15 06:48:04 +08:00
3.4.18-debian-11-r0 release
This commit is contained in:
committed by
Bitnami Containers
parent
4a562f3f1f
commit
6e4f43a8f2
30
bitnami/etcd/3.4/debian-11/Dockerfile
Normal file
30
bitnami/etcd/3.4/debian-11/Dockerfile
Normal file
@@ -0,0 +1,30 @@
|
||||
FROM docker.io/bitnami/minideb:bullseye
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="amd64" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
OS_NAME="linux"
|
||||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "yq" "4.25.2-0" --checksum 58fc2dcc9eda8b5e88ef23081c14384a33ac4736d7238d490416fb4c5c633994
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum da4a2f759ccc57c100d795b71ab297f48b31c4dd7578d773d963bbd49c42bd7b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "etcd" "3.4.18-0" --checksum 33ed4da3e2492d36dc78e3340349f09d638052dde97a966b928583b7d3ba6975
|
||||
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/etcd/postunpack.sh
|
||||
ENV APP_VERSION="3.4.18" \
|
||||
BITNAMI_APP_NAME="etcd" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/etcd/bin:$PATH"
|
||||
|
||||
EXPOSE 2379 2380
|
||||
|
||||
WORKDIR /opt/bitnami/etcd
|
||||
USER 1001
|
||||
ENTRYPOINT [ "/opt/bitnami/scripts/etcd/entrypoint.sh" ]
|
||||
CMD [ "/opt/bitnami/scripts/etcd/run.sh" ]
|
||||
Reference in New Issue
Block a user