This commit is contained in:
2019-10-03 12:35:33 -07:00
parent 282e902b0a
commit 2456abbe0d
3 changed files with 25 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM golang:1.13 as builder
WORKDIR /go/src/github.com/sneak/pooteeweet
COPY . .
RUN go get -v && make build
FROM alpine
COPY --from=builder /go/src/github.com/sneak/pooteeweet/pooteeweet /bin/pooteeweet
CMD /bin/pooteeweet
# FIXME add testing