add Dockerfile for easy deployment

This commit is contained in:
da
2021-04-13 12:29:03 +02:00
parent 9232168b1e
commit 87509ff803
+8
View File
@@ -0,0 +1,8 @@
FROM golang:1.16
WORKDIR /go/src/gidbig
COPY . .
RUN go get -d -v .
RUN go install -v .
CMD [ "gidbig" ]