mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-08 06:09:36 +00:00
11 lines
256 B
Docker
11 lines
256 B
Docker
# A dockerfile to build an etcd container image from the upstream one
|
|
# with a script as entry point
|
|
FROM quay.io/coreos/etcd:v3.1.5
|
|
|
|
# sfdisk and jq re required to mount the disk
|
|
RUN apk add --no-cache sfdisk jq
|
|
|
|
COPY ./etcd.sh /
|
|
|
|
ENTRYPOINT ["/etcd.sh"]
|