From 59796fd4905fca74d26c5541878379cda143a30e Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 2 Aug 2022 22:53:10 +0200 Subject: [PATCH] fix: switch to buster for build image The current alpine image does (still) not work on arm. Buster does, so we're just using that. --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a93461160..bfed95c7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,14 @@ ############## # Build stage -FROM vikunja/golang-build:latest AS build-env +FROM golang:1-buster AS build-env ARG VIKUNJA_VERSION ENV TAGS "sqlite" +ENV GO111MODULE=on + +# Build deps +RUN apt-get update && apt-get install git # Setup repo COPY . ${GOPATH}/src/code.vikunja.io/api