1
0
mirror of https://github.com/etcd-io/etcd.git synced 2026-02-05 06:46:49 +01:00
Files
etcd/Dockerfile
dependabot[bot] f117da236e build(deps): bump distroless/static-debian12 from 4b2a093 to cd64bec
Bumps distroless/static-debian12 from `4b2a093` to `cd64bec`.

---
updated-dependencies:
- dependency-name: distroless/static-debian12
  dependency-version: cd64bec9cec257044ce3a8dd3620cf83b387920100332f2b041f19c4d2febf93
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-12 21:34:05 +00:00

15 lines
349 B
Docker

ARG ARCH=amd64
FROM --platform=linux/${ARCH} gcr.io/distroless/static-debian12@sha256:cd64bec9cec257044ce3a8dd3620cf83b387920100332f2b041f19c4d2febf93
ADD etcd /usr/local/bin/
ADD etcdctl /usr/local/bin/
ADD etcdutl /usr/local/bin/
WORKDIR /var/etcd/
WORKDIR /var/lib/etcd/
EXPOSE 2379 2380
# Define default command.
CMD ["/usr/local/bin/etcd"]