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
2021-04-23 11:16:31 +02:00

10 lines
126 B
Docker

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