From 99ddb2b62b68af874093ab0112f19cfe886f1f20 Mon Sep 17 00:00:00 2001 From: WeebDataHoarder Date: Sat, 28 Jun 2025 10:35:10 +0200 Subject: [PATCH] build/docker: address legacy "ENV key value" form and RedundantTargetPlatform --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bcd48a8..3988671 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,13 +32,13 @@ RUN go build -v \ RUN test -e "${GOBIN}/go-away" -FROM --platform=$TARGETPLATFORM ${from} +FROM ${from} COPY --from=build /go/bin/go-away /bin/go-away COPY examples/snippets/ /snippets/ COPY docker-entrypoint.sh / -ENV TZ UTC +ENV TZ=UTC ENV GOAWAY_METRICS_BIND="" ENV GOAWAY_DEBUG_BIND=""