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

10 lines
126 B
Docker
Raw Permalink Normal View History

2021-04-14 15:14:31 +02:00
FROM golang:1.16-alpine
WORKDIR /go/src/gidbig
COPY . .
RUN go get -d -v .
RUN go install -v .
EXPOSE 8080
CMD [ "gidbig" ]