Target for building a Kapow! container image and Dockerfile

This commit is contained in:
Héctor Hurtado
2019-10-31 15:01:13 +01:00
parent 19c4e8d482
commit 84a106db19
2 changed files with 19 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM alpine
RUN apk upgrade --update-cache \
&& apk add bash curl coreutils file
COPY kapow /usr/bin/kapow
COPY *.pow /tmp/
ENTRYPOINT ["/usr/bin/kapow"]