Skip to content

Commit

Permalink
Updated Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lspgn committed May 7, 2018
1 parent 43b57f2 commit 9a3b358
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM debian:stretch

ARG DOWNLOAD_URL=https://github.com/cloudflare/goflow/releases/download/v2.0.1/goflow-v2.0.1-linux-x86_64
ARG DOWNLOAD_URL=https://github.com/cloudflare/goflow/releases/download/v2.0.2/goflow-v2.0.2-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" ]
ENTRYPOINT [ "/goflow" ]
2 changes: 1 addition & 1 deletion goflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"bytes"
)

const AppVersion = "GoFlow v2.0.1"
const AppVersion = "GoFlow v2.0.2"

var (
FEnable = flag.Bool("netflow", true, "Enable NetFlow")
Expand Down

0 comments on commit 9a3b358

Please sign in to comment.