Skip to content

Commit

Permalink
[ci skip] Add dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranza committed Sep 23, 2018
1 parent 52ca47b commit 08d1375
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile.amd64
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM alpine:3.7

EXPOSE 9092/tcp

RUN apk --no-cache add ca-certificates

COPY propaganda /

ENTRYPOINT [ "/propaganda" ]
9 changes: 9 additions & 0 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM arm64v8/alpine:3.7

EXPOSE 9092/tcp

RUN apk --no-cache add ca-certificates

COPY propaganda /

ENTRYPOINT [ "/propaganda" ]
10 changes: 10 additions & 0 deletions Dockerfile.armv6
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM arm32v6/alpine:3.7

EXPOSE 9092/tcp

RUN apk --no-cache add ca-certificates

COPY propaganda /


ENTRYPOINT [ "/propaganda" ]

0 comments on commit 08d1375

Please sign in to comment.