Add Docker support

This commit is contained in:
Dustin Pianalto 2020-04-02 23:10:58 -08:00
parent e58aabae9a
commit a29710bcc8

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM golang:1.14-alpine
WORKDIR /go/src/Goff
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
ENTRYPOINT /go/bin/goff