Files
plainpages/Dockerfile
T
renovate-bot c3daeb0384
renovate/artifacts Artifact file update failure
CI / full-gate (push) Failing after 18s
chore(deps): update node.js to v24.18.1
Release-Bump: minor
2026-07-31 04:18:04 +00:00

15 lines
345 B
Docker

# Node 24 runs TypeScript directly (type stripping) — no build step. Pinned exact tag.
FROM node:24.18.1-alpine3.24
WORKDIR /app
# Reproducible install from the lockfile. Dev deps kept so typecheck/test run in-image.
COPY package.json package-lock.json .npmrc ./
RUN npm ci
COPY . .
ENV PORT=3000
EXPOSE 3000
CMD ["node", "src/server.ts"]