--ignore-scripts prevented the C++ addon from being compiled, causing a 'Could not locate bindings file' crash on startup. - deps stage: add python3/make/g++ build tools, remove --ignore-scripts - runtime stage: add libstdc++ so the compiled .node binary can load - build tools are discarded with the deps layer; runtime image stays lean
61 lines
2.4 KiB
Docker
61 lines
2.4 KiB
Docker
# ---------------------------------------------------------------------------
|
|
# Stage 1 — deps: install production dependencies only
|
|
# ---------------------------------------------------------------------------
|
|
FROM node:22-alpine AS deps
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy manifests and install production deps only (no devDependencies).
|
|
# build-base provides the C++ toolchain needed to compile better-sqlite3's
|
|
# native addon. It stays in the deps stage and is NOT copied to runtime.
|
|
COPY package.json package-lock.json ./
|
|
RUN apk add --no-cache python3 make g++ && \
|
|
npm ci --omit=dev
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Stage 2 — runtime image (minimal attack surface)
|
|
# ---------------------------------------------------------------------------
|
|
FROM node:22-alpine AS runtime
|
|
|
|
LABEL org.opencontainers.image.title="sofarr"
|
|
LABEL org.opencontainers.image.description="Personal media download dashboard for *arr services"
|
|
LABEL org.opencontainers.image.authors="Gordon Bolton"
|
|
LABEL org.opencontainers.image.source="https://git.i3omb.com/Gandalf/sofarr"
|
|
LABEL org.opencontainers.image.url="https://docker.i3omb.com"
|
|
LABEL org.opencontainers.image.vendor="Gordon Bolton"
|
|
LABEL org.opencontainers.image.licenses="MIT"
|
|
LABEL custom.hardware.requirement="None - runs on any Docker-supported platform including ARM and x86_64"
|
|
|
|
# Use the built-in non-root 'node' user (UID 1000) from the official image
|
|
# The /app directory is owned by root; data directory is owned by node
|
|
WORKDIR /app
|
|
|
|
# libstdc++ is required at runtime to load the better-sqlite3 native addon.
|
|
# The build tools (g++, make, python3) remain in the deps stage only.
|
|
RUN apk add --no-cache libstdc++
|
|
|
|
# Copy production deps from deps stage
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
|
|
# Copy application source owned by root (read-only at runtime)
|
|
COPY --chown=root:root server/ ./server/
|
|
COPY --chown=root:root public/ ./public/
|
|
COPY --chown=root:root package.json ./
|
|
|
|
# Persistent data directory owned by node user (SQLite token store, logs)
|
|
RUN mkdir -p /app/data && chown node:node /app/data
|
|
|
|
ENV NODE_ENV=production
|
|
ENV DATA_DIR=/app/data
|
|
|
|
# Drop to non-root user for all subsequent operations
|
|
USER node
|
|
|
|
EXPOSE 3001
|
|
|
|
# HEALTHCHECK — Docker will restart the container if this fails 3 times
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
|
CMD wget -qO- http://localhost:3001/health || exit 1
|
|
|
|
CMD ["node", "server/index.js"]
|