From b76dc1900634241e40d66b07fbb2ab1f9e5b00e6 Mon Sep 17 00:00:00 2001 From: jzitnik-dev Date: Sat, 25 Jul 2026 17:23:55 +0200 Subject: [PATCH] fix: Build again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b16e0d..94b8aa7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY go.mod go.sum ./ RUN go mod download COPY . . -RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o mautrix-ntfy main.go +RUN go build -ldflags="-w -s" -o mautrix-ntfy . FROM alpine:latest