All checks were successful
Build Container (Nix) / detect (push) Successful in 2s
Build Container / detect (push) Successful in 2s
Build Container (Nix) / build (alloy) (push) Successful in 9s
Build Container (Nix) / build (cv) (push) Successful in 2s
Build Container (Nix) / build (devpi) (push) Successful in 2s
Build Container (Nix) / build (grafana) (push) Successful in 2s
Build Container / build (cv) (push) Successful in 20s
Build Container (Nix) / build (grafana-sidecar) (push) Successful in 2s
Build Container (Nix) / build (homepage) (push) Successful in 2s
Build Container (Nix) / build (kiwix-serve) (push) Successful in 2s
Build Container (Nix) / build (kubectl) (push) Successful in 3s
Build Container (Nix) / build (loki) (push) Successful in 2s
Build Container / build (alloy) (push) Successful in 40s
Build Container (Nix) / build (mealie) (push) Successful in 1s
Build Container (Nix) / build (miniflux) (push) Successful in 2s
Build Container (Nix) / build (navidrome) (push) Successful in 2s
Build Container / build (devpi) (push) Successful in 41s
Build Container (Nix) / build (nettest) (push) Successful in 15s
Build Container / build (grafana-sidecar) (push) Successful in 1m27s
Build Container / build (grafana) (push) Successful in 3m23s
Build Container (Nix) / build (ntfy) (push) Successful in 3m19s
Build Container (Nix) / build (prometheus) (push) Successful in 1s
Build Container (Nix) / build (quartz) (push) Successful in 1s
Build Container (Nix) / build (runner-job-image) (push) Successful in 1s
Build Container (Nix) / build (teslamate) (push) Successful in 2s
Build Container (Nix) / build (transmission) (push) Successful in 2s
Build Container (Nix) / build (transmission-exporter) (push) Successful in 1s
Build Container (Nix) / build (unpoller) (push) Successful in 1s
Build Container / build (kiwix-serve) (push) Successful in 1m17s
Build Container / build (kubectl) (push) Successful in 41s
Build Container / build (homepage) (push) Successful in 8m21s
Build Container / build (mealie) (push) Successful in 1m1s
Build Container / build (loki) (push) Successful in 8m21s
Build Container / build (miniflux) (push) Successful in 2m24s
Build Container / build (nettest) (push) Successful in 14s
Build Container / build (ntfy) (push) Successful in 8m33s
Build Container / build (prometheus) (push) Successful in 37s
Build Container / build (quartz) (push) Successful in 19s
Build Container / build (navidrome) (push) Successful in 10m36s
Build Container / build (runner-job-image) (push) Successful in 3m18s
Build Container / build (transmission) (push) Successful in 20s
Build Container / build (transmission-exporter) (push) Successful in 21s
Build Container / build (unpoller) (push) Successful in 11s
Build Container / build (teslamate) (push) Successful in 4m42s
Every container now carries title, description, version, source, and vendor labels per the OCI image spec. Version is derived from the existing CONTAINER_APP_VERSION ARG at build time. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
66 lines
1.8 KiB
Docker
66 lines
1.8 KiB
Docker
# ntfy push notification server
|
|
# Three-stage build: Web UI (Node), server (Go+SQLite), runtime (Alpine)
|
|
|
|
ARG CONTAINER_APP_VERSION=v2.17.0
|
|
ARG NTFY_VERSION=${CONTAINER_APP_VERSION}
|
|
ARG NTFY_COMMIT=a03a37feb1869e84e3af0dd6190bdc7183f211ec
|
|
|
|
FROM node:22-alpine AS web-build
|
|
|
|
ARG NTFY_COMMIT
|
|
RUN apk add --no-cache git
|
|
|
|
RUN mkdir /app && cd /app \
|
|
&& git init \
|
|
&& git remote add origin https://forge.ops.eblu.me/mirrors/ntfy.git \
|
|
&& git fetch --depth 1 origin ${NTFY_COMMIT} \
|
|
&& git checkout FETCH_HEAD
|
|
|
|
WORKDIR /app/web
|
|
RUN npm ci
|
|
RUN npm run build
|
|
|
|
FROM golang:alpine3.22 AS build
|
|
|
|
ARG NTFY_VERSION
|
|
ARG NTFY_COMMIT
|
|
RUN apk add --no-cache build-base git
|
|
|
|
RUN mkdir /app && cd /app \
|
|
&& git init \
|
|
&& git remote add origin https://forge.ops.eblu.me/mirrors/ntfy.git \
|
|
&& git fetch --depth 1 origin ${NTFY_COMMIT} \
|
|
&& git checkout FETCH_HEAD
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy pre-built web UI assets
|
|
COPY --from=web-build /app/web/build /app/server/site
|
|
|
|
# Create docs placeholder with dummy file (go:embed requires non-empty dir)
|
|
RUN mkdir -p server/docs && touch server/docs/placeholder
|
|
|
|
ENV CGO_ENABLED=1
|
|
|
|
RUN go build \
|
|
-o /ntfy \
|
|
-tags sqlite_omit_load_extension,osusergo,netgo \
|
|
-ldflags "-linkmode=external -extldflags=-static -s -w -X main.version=${NTFY_VERSION}"
|
|
|
|
FROM alpine:3.22
|
|
|
|
ARG CONTAINER_APP_VERSION
|
|
LABEL org.opencontainers.image.title="ntfy"
|
|
LABEL org.opencontainers.image.description="ntfy is a simple HTTP-based pub-sub notification service"
|
|
LABEL org.opencontainers.image.version="${CONTAINER_APP_VERSION}"
|
|
LABEL org.opencontainers.image.source="https://forge.eblu.me/eblume/blumeops"
|
|
LABEL org.opencontainers.image.vendor="blumeops"
|
|
|
|
RUN apk --no-cache add tzdata
|
|
|
|
COPY --from=build /ntfy /usr/bin/ntfy
|
|
|
|
EXPOSE 80
|
|
|
|
USER 65534
|
|
ENTRYPOINT ["/usr/bin/ntfy"]
|