Some checks failed
Check scripts syntax / check-scripts-syntax (push) Successful in 3s
Test automated-nfs-backup / test-automated-nfs-backup (push) Successful in 4s
Haven Notify Build and Deploy / Build Haven Notify Image (pull_request) Has been cancelled
Haven Notify Build and Deploy / Build Haven Notify Image (PR) (pull_request) Has been cancelled
Haven Notify Build and Deploy / Deploy Haven Notify (internal) (pull_request) Has been cancelled
Haven Notify Build and Deploy / Test Haven Notify (pull_request) Has been cancelled
23 lines
781 B
Docker
23 lines
781 B
Docker
ARG BUILDPLATFORM
|
|
FROM --platform=$BUILDPLATFORM golang:1.25.10-alpine3.23@sha256:8d22e29d960bc50cd025d93d5b7c7d220b1ee9aa7a239b3c8f55a57e987e8d45 AS builder
|
|
|
|
ARG TARGETARCH
|
|
ARG TARGETOS
|
|
|
|
WORKDIR /src
|
|
COPY go.mod go.sum ./
|
|
COPY *.go ./
|
|
COPY template/ template/
|
|
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -trimpath -ldflags="-s -w" -o /out/haven-notify .
|
|
|
|
FROM alpine:3.23.3@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
|
|
WORKDIR /app
|
|
RUN apk --no-cache add ca-certificates \
|
|
&& addgroup -S haven-notify \
|
|
&& adduser -S -D -H -G haven-notify haven-notify
|
|
COPY --from=builder --chown=haven-notify:haven-notify /out/haven-notify /app/haven-notify
|
|
EXPOSE 8080
|
|
ENV WEBHOOK_URL=""
|
|
USER haven-notify
|
|
ENTRYPOINT ["/app/haven-notify"]
|