Skip to content

Commit

Permalink
update etcd to 3.5.16
Browse files Browse the repository at this point in the history
Signed-off-by: haorenfsa <[email protected]>
  • Loading branch information
haorenfsa committed Nov 21, 2024
1 parent a098c01 commit 0ff8bae
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions 3.5/debian-12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ LABEL maintainer="Team DevOps of Zilliz <[email protected]" \
org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami, polished by zilliztech" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="3.5.15-r1" \
org.opencontainers.image.ref.name="3.5.16-r1" \
org.opencontainers.image.source="https://github.com/milvus-io/bitnami-docker-etcd" \
org.opencontainers.image.title="etcd" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="3.5.15-r1"
org.opencontainers.image.version="3.5.16-r1"

ENV HOME="/" \
OS_ARCH_RAW="${TARGETARCH}" \
Expand All @@ -23,13 +23,13 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
OS_ARCH=`echo ${OS_ARCH_RAW}| sed 's|/|-|'` && \
curl -SsLf https://github.com/etcd-io/etcd/releases/download/v3.5.15/etcd-v3.5.15-${OS_ARCH}.tar.gz -O && \
tar -zxf "etcd-v3.5.15-${OS_ARCH}.tar.gz" && \
curl -SsLf https://github.com/etcd-io/etcd/releases/download/v3.5.16/etcd-v3.5.16-${OS_ARCH}.tar.gz -O && \
tar -zxf "etcd-v3.5.16-${OS_ARCH}.tar.gz" && \
mkdir -p /opt/bitnami/etcd/bin && \
mv ./etcd-v3.5.15-${OS_ARCH}/etcd /opt/bitnami/etcd/bin/etcd && \
mv ./etcd-v3.5.15-${OS_ARCH}/etcdctl /opt/bitnami/etcd/bin/etcdctl && \
mv ./etcd-v3.5.15-${OS_ARCH}/etcdutl /opt/bitnami/etcd/bin/etcdutl && \
rm -rf "etcd-v3.5.15-${OS_ARCH}.tar.gz"
mv ./etcd-v3.5.16-${OS_ARCH}/etcd /opt/bitnami/etcd/bin/etcd && \
mv ./etcd-v3.5.16-${OS_ARCH}/etcdctl /opt/bitnami/etcd/bin/etcdctl && \
mv ./etcd-v3.5.16-${OS_ARCH}/etcdutl /opt/bitnami/etcd/bin/etcdutl && \
rm -rf "etcd-v3.5.16-${OS_ARCH}.tar.gz"
RUN cd /tmp/bitnami/pkg/cache/ && \
OS_ARCH=`echo ${OS_ARCH_RAW}| sed 's|/|-|'` && \
COMPONENTS=( \
Expand All @@ -51,7 +51,7 @@ RUN chmod g+rwX /opt/bitnami

COPY rootfs /
RUN /opt/bitnami/scripts/etcd/postunpack.sh
ENV APP_VERSION="3.5.15" \
ENV APP_VERSION="3.5.16" \
BITNAMI_APP_NAME="etcd" \
ETCDCTL_API="3" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/etcd/bin:$PATH"
Expand Down

0 comments on commit 0ff8bae

Please sign in to comment.