Skip to content
Snippets Groups Projects
Commit 24c6bc6b authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Added dockerfile

parent 1dc3b098
Branches
No related tags found
No related merge requests found
FROM instrumentisto/glide:0.13.1-go1.10 as builder
RUN apk --update add gcc musl-dev
WORKDIR /go/src/app
COPY . .
RUN glide install
RUN go build -a app .
FROM alpine:3.7
WORKDIR /root/
COPY --from=builder /go/src/app/app .
CMD ["./app"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment