Add Dockerfile

This commit is contained in:
Akbar Rahman 2021-07-29 08:09:04 +01:00
parent 76197520e7
commit 3fa2c958f7

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM golang:1.16
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["gohookr"]