From f9e9c4ec71a5bb4396144ea2d2b2b94f7f06327a 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 12:59:52 +0200 Subject: [PATCH] yeah, clone the release branch and then checkout the master branch. 'doh! --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e261b8..23cdf8e 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 master && go build -v -ldflags "$(go run buildscripts/gen-ldflags.go)" + git checkout release && go build -v -ldflags "$(go run buildscripts/gen-ldflags.go)" FROM alpine:3.12