fix(docker): use official go image instead of our own to build

This commit is contained in:
kolaente 2022-08-03 17:54:21 +02:00
parent fa82c71f8c
commit b71e6f8049
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 1 deletions

View File

@ -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