golang-build/Dockerfile
renovate 9599baf662
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
chore(deps): update golang docker tag to v1.23
2024-08-13 21:16:39 +00:00

7 lines
269 B
Docker

FROM golang:1.23-alpine
ENV GO111MODULE=on
RUN apk --no-cache add build-base git && \
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