# syntax=docker/dockerfile:1.7 # ---- deps ---- FROM node:20-bookworm-slim AS deps WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ openssl ca-certificates \ && rm -rf /var/lib/apt/lists/* COPY package.json package-lock.json* ./ COPY prisma ./prisma RUN npm ci # Workspace-style freshness for the shared OTM UI package: every image build # installs the latest published @otm/account-panel on top of the lockfile, so # rebuilds pick up package releases without needing a pin-bump commit (the # package.json pin is the dev-time floor). The ADD pulls the registry # packument, which only changes on a publish — so this layer stays cached # between publishes and busts exactly when a new version exists. Moonbase # builds on the NAS itself, so the LAN host is always reachable. COPY .npmrc ./ ADD http://192.168.0.5:3022/api/packages/tonym/npm/@otm/account-panel /tmp/otm-account-panel.packument.json RUN npm install --no-save --no-audit --no-fund @otm/account-panel@latest # ---- build ---- FROM node:20-bookworm-slim AS build WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ openssl ca-certificates \ && rm -rf /var/lib/apt/lists/* COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npx prisma generate ENV NEXT_TELEMETRY_DISABLED=1 RUN npm run build # ---- runtime ---- FROM node:20-bookworm-slim AS runtime WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ openssl ca-certificates tini tzdata netcat-openbsd \ && rm -rf /var/lib/apt/lists/* ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1 ENV PORT=3000 ENV TZ=America/Chicago COPY --from=build /app/package.json /app/package-lock.json* ./ COPY --from=build /app/node_modules ./node_modules COPY --from=build /app/.next ./.next COPY --from=build /app/public ./public COPY --from=build /app/prisma ./prisma COPY --from=build /app/next.config.mjs ./ COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh RUN chmod +x /usr/local/bin/docker-entrypoint.sh EXPOSE 3000 ENTRYPOINT ["/usr/bin/tini", "--", "/usr/local/bin/docker-entrypoint.sh"] CMD ["npm", "run", "start"]