fix(docker): use official go image instead of our own to build
This commit is contained in:
parent
fa82c71f8c
commit
b71e6f8049
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue