discord-buttsbot-go/Dockerfile

9 lines
119 B
Docker

FROM golang:latest
WORKDIR /go/src/buttsbot
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["buttsbot"]