All checks were successful
Build Container / build (push) Successful in 28s
Instead of running as root, create a dedicated navidrome user (UID 1000) in the container and use Kubernetes fsGroup to ensure PVC volumes are writable. This provides defense-in-depth against container escape attacks. - Dockerfile: add navidrome user/group (1000), set USER 1000 - Deployment: add pod securityContext (fsGroup, runAsUser, runAsGroup) - Deployment: add container securityContext (runAsNonRoot, no privilege escalation) - Bump image to v1.0.3 (v1.0.2 was built without these changes) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
1.4 KiB
Docker
54 lines
1.4 KiB
Docker
# Navidrome music server
|
|
# Three-stage build: UI (Node), backend (Go+taglib), runtime (Alpine)
|
|
|
|
ARG NAVIDROME_VERSION=v0.60.3
|
|
|
|
FROM node:22-alpine AS ui-build
|
|
|
|
ARG NAVIDROME_VERSION
|
|
RUN apk add --no-cache git
|
|
|
|
RUN git clone --depth 1 --branch ${NAVIDROME_VERSION} \
|
|
https://forge.ops.eblu.me/eblume/navidrome.git /app
|
|
|
|
WORKDIR /app/ui
|
|
RUN npm ci
|
|
RUN npm run build
|
|
|
|
FROM golang:alpine3.22 AS build
|
|
|
|
ARG NAVIDROME_VERSION
|
|
RUN apk add --no-cache build-base git taglib-dev zlib-dev
|
|
|
|
RUN git clone --depth 1 --branch ${NAVIDROME_VERSION} \
|
|
https://forge.ops.eblu.me/eblume/navidrome.git /app
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy pre-built UI assets
|
|
COPY --from=ui-build /app/ui/build /app/ui/build
|
|
|
|
ENV CGO_ENABLED=1
|
|
ENV CGO_CFLAGS_ALLOW="--define-prefix"
|
|
|
|
RUN go build -tags=netgo \
|
|
-ldflags="-w -s -X github.com/navidrome/navidrome/consts.gitTag=${NAVIDROME_VERSION}" \
|
|
-o /navidrome .
|
|
|
|
FROM alpine:3.22
|
|
|
|
LABEL org.opencontainers.image.title=Navidrome
|
|
LABEL org.opencontainers.image.description="Navidrome is a self-hosted music server and streamer"
|
|
# Points to upstream canonical source, not the forge mirror used for builds
|
|
LABEL org.opencontainers.image.source=https://github.com/navidrome/navidrome
|
|
|
|
RUN apk add --no-cache ca-certificates tzdata taglib ffmpeg \
|
|
&& addgroup -g 1000 navidrome \
|
|
&& adduser -u 1000 -G navidrome -D navidrome
|
|
|
|
COPY --from=build /navidrome /usr/bin/navidrome
|
|
|
|
EXPOSE 4533
|
|
|
|
USER 1000
|
|
CMD ["/usr/bin/navidrome"]
|