diff --git a/Dockerfile b/Dockerfile index 591e6a863..729120ff9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ ############## # Build stage -FROM vikunja/golang-build AS build-env +FROM golang:1.18-alpine AS build-env + +RUN apk --no-cache add build-base git && \ + go install github.com/magefile/mage@latest && \ + mv /go/bin/mage /usr/local/go/bin ARG VIKUNJA_VERSION