Add Docker instructions

This commit is contained in:
Saul
2022-01-02 16:47:45 +02:00
committed by fiatjaf
parent 85e5644e2f
commit b0467795cd
2 changed files with 40 additions and 0 deletions

8
basic/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM golang:1.15.5
WORKDIR /go/src/app
COPY ./ .
RUN go get -d -v ./...
RUN go install -v ./...
RUN cd basic && make