more
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user