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.
2021-04-13 12:54:07 +02:00
|
|
|
FROM golang:1.16-alpine
|
2021-04-13 12:29:03 +02:00
|
|
|
|
|
|
|
|
WORKDIR /go/src/gidbig
|
|
|
|
|
COPY . .
|
|
|
|
|
RUN go get -d -v .
|
|
|
|
|
RUN go install -v .
|
|
|
|
|
|
|
|
|
|
CMD [ "gidbig" ]
|