2 Commits

Author SHA1 Message Date
jzitnik b76dc19006 fix: Build again
Build and Publish Package (amd64) / docker (push) Failing after 2m0s
2026-07-25 17:23:55 +02:00
jzitnik f52ea02ceb fix: Build
Build and Publish Package (amd64) / docker (push) Failing after 1m23s
2026-07-25 17:20:46 +02:00
+2 -2
View File
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine AS builder FROM golang:1.26-alpine AS builder
WORKDIR /app WORKDIR /app
RUN apk add --no-cache git ca-certificates RUN apk add --no-cache git ca-certificates
@@ -7,7 +7,7 @@ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . . 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 FROM alpine:latest