golang-build/Dockerfile

7 lines
269 B
Docker
Raw Normal View History

2021-05-07 10:28:54 +00:00
FROM golang:1.16-alpine
2018-10-27 14:24:07 +00:00
ENV GO111MODULE=on
RUN apk --no-cache add build-base git && \
2021-05-07 10:28:54 +00:00
go install github.com/magefile/mage@latest && \
mv /go/bin/mage /usr/local/go/bin # Since we're mounting the source we want to compile into /go, we will overlay the mage binary