From 7365715b11fdd2294051414c73b8c047ee47744b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=20Gl=C3=A4=C3=9F-St=C3=B6cker?= Date: Thu, 15 Apr 2021 13:21:38 +0200 Subject: [PATCH] okay, go install is neccessary in this setup --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f27df3a..084982d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV GO111MODULE on RUN \ apk add --no-cache git && \ git clone -b release https://github.com/minio/minio && cd minio && \ - git checkout release && go build -v -ldflags "$(go run buildscripts/gen-ldflags.go)" + git checkout release && go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" FROM alpine:3.12