mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps distroless/static-debian12 from `4197211` to `ce46866`. --- updated-dependencies: - dependency-name: distroless/static-debian12 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
349 B
Docker
15 lines
349 B
Docker
ARG ARCH=amd64
|
|
FROM --platform=linux/${ARCH} gcr.io/distroless/static-debian12@sha256:ce46866b3a5170db3b49364900fb3168dc0833dfb46c26da5c77f22abb01d8c3
|
|
|
|
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"]
|