From 2e5f14a6da2efad3a4861682d8f60ccb3068fa42 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 26 Oct 2023 13:19:52 -0700 Subject: [PATCH] fix: revert Dockerfile repo change --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2bb14830e..2c02f8acc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV GIT_COMMIT=${GIT_COMMIT} ARG NAME=docker ENV NAME=${NAME} -RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo -ldflags "-extldflags \"-static\" -s -w -X github.com/FrontRowXP/owncast/config.GitCommit=$GIT_COMMIT -X github.com/FrontRowXP/owncast/config.VersionNumber=$VERSION -X github.com/FrontRowXP/owncast/config.BuildPlatform=$NAME" -o owncast . +RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo -ldflags "-extldflags \"-static\" -s -w -X github.com/owncast/owncast/config.GitCommit=$GIT_COMMIT -X github.com/owncast/owncast/config.VersionNumber=$VERSION -X github.com/owncast/owncast/config.BuildPlatform=$NAME" -o owncast . # Create the image by copying the result of the build into a new alpine image FROM alpine:3.18.4