simpleauth/build/Containerfile

9 lines
111 B
Docker

FROM golang:1
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["simpleauth"]