From 904c75050e48177dcdfa6864a5fcf6fc008c216d Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Wed, 14 Aug 2024 15:14:43 -0700 Subject: [PATCH] fix: docker was not building for live events (#24382) --- livestream/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livestream/Dockerfile b/livestream/Dockerfile index c0c436ea0c3..abac3e9ee86 100644 --- a/livestream/Dockerfile +++ b/livestream/Dockerfile @@ -5,7 +5,7 @@ RUN go mod download -x COPY . ./ RUN go get ./... -RUN go build -v -o /livestream ./... +RUN go build -v -o /livestream . # Fetch the GeoLite2-City database that will be used for IP geolocation within Django. RUN apt-get update && \