Init Builder scripts

This commit is contained in:
Pascal Vizeli
2018-04-15 10:59:55 +02:00
parent 7f5575a8ef
commit df5c9e5605
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM alpine:3.7
# Install packages
RUN apk add --no-cache \
bash
RUN apk add --no-cache --repository http://nl.alpinelinux.org/alpine/v3.7/community \
docker
COPY builder.sh /
ENTRYPOINT ["builder.sh"]