Added Dockerfile for go-micro (#959)

This commit is contained in:
Milos Gajdos 2019-11-19 16:50:31 +00:00 committed by Asim Aslam
parent fb5b358ae2
commit 538d3752f9

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM golang:1.13-alpine
ENV GO111MODULE=on
RUN apk --no-cache add make git gcc libtool musl-dev
WORKDIR /
COPY go.mod .
COPY go.sum .
RUN go mod download