Files
linuxkit/projects/demo/etcd/Dockerfile
Rolf Neugebauer 31a4156686 demo: Add formatting and mounting to etcd image
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2017-04-08 20:38:53 +01:00

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"]