Move mount back to its own package, not inside docker

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2017-04-09 12:53:46 +01:00
parent 48cb54d378
commit 3ffa912c41
5 changed files with 48 additions and 13 deletions

11
pkg/mount/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.5
RUN \
apk update && apk upgrade -a && \
apk add --no-cache \
jq \
sfdisk \
&& true
COPY . ./
CMD ["/bin/sh", "/mount.sh"]