From 251b877015761fdd2b8dbd18cd8ec696dc374103 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 2 Aug 2022 22:01:21 +0200 Subject: [PATCH] chore: use our custom build image to build docker image --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c4b0596a..a93461160 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,10 @@ ############## # Build stage -FROM golang:1-alpine3.12 AS build-env +FROM vikunja/golang-build:latest AS build-env ARG VIKUNJA_VERSION ENV TAGS "sqlite" -ENV GO111MODULE=on - -# Build deps -RUN apk --no-cache add build-base git # Setup repo COPY . ${GOPATH}/src/code.vikunja.io/api