9 lines
241 B
Docker
9 lines
241 B
Docker
FROM golang:1.12.5-alpine3.9 as builder
|
|
|
|
# installing git
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache git
|
|
|
|
RUN go get github.com/sirupsen/logrus
|
|
RUN go get github.com/buaazp/fasthttprouter
|
|
RUN go get github.com/valyala/fasthttp |