Initial Commit to Add RestAPI Server to IEC
[iec.git] / src / foundation / api / docker / Dockerfile.base
1 FROM golang:1.12.7-alpine3.9
2 RUN apk add --update git make gcc linux-headers libc-dev
3
4 RUN go get github.com/revel/revel && go get github.com/revel/cmd/revel && \
5     go get github.com/revel/modules && \
6     go get github.com/valyala/fasthttp && go get golang.org/x/crypto/bcrypt && \
7     go get gopkg.in/gorp.v2
8
9 RUN apk del --purge git make linux-headers
10