This repository has been archived on 2022-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gidbig/Dockerfile
T
2021-04-14 13:07:41 +02:00

8 lines
106 B
Docker

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