Add docker config

This commit is contained in:
Melon 2022-03-26 12:00:42 +00:00
parent 7ac73b86e1
commit ab69c388e9
Signed by: melon
GPG Key ID: B0ADD5395BCDAAB6

9
Dockerfile Normal file
View File

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