From b44adc4f5d797e571e6b97637f9b01a1a161af17 Mon Sep 17 00:00:00 2001 From: Pieter Hollander Date: Tue, 5 Dec 2023 17:45:12 +0100 Subject: [PATCH] Fix rename omission. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7f55c62..0544139 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN go mod download COPY . . # Build the application for the specified target architecture -RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} go build -o mqtt-postgresql . +RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} go build -o p1-logger . # Create a minimal runtime image FROM --platform=${TARGETPLATFORM} scratch