11 lines
116 B
Docker
11 lines
116 B
Docker
FROM golang:1.17
|
|
|
|
WORKDIR /go/src/app
|
|
|
|
COPY *.go .
|
|
|
|
RUN go mod init dispatch && go get
|
|
RUN go install
|
|
|
|
CMD dispatch
|