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