From 29ad037125af37beb2e99986cc11ae52d2f43e60 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Mon, 10 Apr 2017 11:41:17 +0100 Subject: [PATCH] demo: Remove jq and sfdisk from etcd image They are no longer needed as the mounting happens in the mount container. Signed-off-by: Rolf Neugebauer --- projects/demo/etcd/Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/projects/demo/etcd/Dockerfile b/projects/demo/etcd/Dockerfile index bc6fcca43..60818ede6 100644 --- a/projects/demo/etcd/Dockerfile +++ b/projects/demo/etcd/Dockerfile @@ -1,10 +1,5 @@ -# 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"]