From e713852c67b7aa6545375f301777dcf5a022bf24 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 7 Mar 2021 21:02:25 -0800 Subject: [PATCH] Fix Dockerfile to pass along the correct platform name --- build/release/Dockerfile-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release/Dockerfile-build b/build/release/Dockerfile-build index f6450ff28..f2d8c9e05 100644 --- a/build/release/Dockerfile-build +++ b/build/release/Dockerfile-build @@ -13,7 +13,7 @@ ENV GIT_COMMIT=${GIT_COMMIT} ARG NAME ENV NAME=${NAME} -RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo -ldflags "-extldflags \"-static\" -s -w -X main.GitCommit=$GIT_COMMIT -X main.BuildVersion=$VERSION -X main.BuildType=$NAME" -o owncast . +RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo -ldflags "-extldflags \"-static\" -s -w -X main.GitCommit=$GIT_COMMIT -X main.BuildVersion=$VERSION -X main.BuildPlatform=$NAME" -o owncast . # Create the image by copying the result of the build into a new alpine image FROM alpine