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.
This commit is contained in:
parent
26e2d0bdde
commit
59796fd490
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue