We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaba2b4 commit 732b348Copy full SHA for 732b348
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM golang:1.6.2-alpine
2
+MAINTAINER Can Yucel "can.yucel@gmail.com"
3
+
4
+RUN apk --update upgrade && \
5
+ apk add curl ca-certificates && \
6
+ update-ca-certificates && \
7
+ rm -rf /var/cache/apk/*
8
9
+ENV WATCHER_VERSION 0.2.1
10
11
+ADD https://github.com/canthefason/go-watcher/releases/download/v${WATCHER_VERSION}/watcher-${WATCHER_VERSION}-linux-amd64 /go/bin/watcher
12
13
+RUN chmod +x /go/bin/watcher
14
15
+CMD ["watcher"]
0 commit comments