Fix rename omission.
All checks were successful
Build Docker image / build (push) Successful in 46s

This commit is contained in:
Pieter Hollander 2023-12-05 17:45:12 +01:00
parent 8a370d7767
commit b44adc4f5d
Signed by: pieter
SSH key fingerprint: SHA256:HbX+9cBXsop9SuvL+mELd29sK+7DehFfdVweFVDtMSg

View file

@ -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