Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update etcd to 3.5.18 #1538

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions etcd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# etcd container

# Stage1: build from source
FROM ghcr.io/cybozu/golang:1.22-jammy AS build
FROM ghcr.io/cybozu/golang:1.23-noble AS build

ARG ETCD_VERSION=3.5.15
ARG ETCD_VERSION=3.5.18

SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -sSLf https://github.com/etcd-io/etcd/archive/v${ETCD_VERSION}.tar.gz | \
Expand All @@ -14,7 +14,7 @@ WORKDIR /work/etcd
RUN ./build.sh

# Stage2: setup runtime container
FROM ghcr.io/cybozu/ubuntu:22.04
FROM ghcr.io/cybozu/ubuntu:24.04
LABEL org.opencontainers.image.source="https://github.com/cybozu/neco-containers"

COPY --from=build /work/etcd/bin /usr/local/etcd/bin
Expand Down
2 changes: 1 addition & 1 deletion etcd/TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.15.1
3.5.18.1
Loading