Skip to content

Commit

Permalink
Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lspgn committed Apr 10, 2018
1 parent a37ac53 commit b4d4b03
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM debian:stretch

ARG DOWNLOAD_URL=https://github.com/cloudflare/goflow/releases/download/v1.1.0/goflow-linux-x86_64

RUN apt-get update && \
apt-get -y install curl && \
apt-get clean && \
curl -L ${DOWNLOAD_URL} > /goflow && \
chmod +x /goflow

ENTRYPOINT [ "/goflow" ]

0 comments on commit b4d4b03

Please sign in to comment.