Files
plainpages/Dockerfile
T
renovate-bot 01abb2f99c
CI / full-gate (push) Successful in 2m54s
Mirror / github-mirror (push) Successful in 6s
Update Node.js to v24.19.0
Release-Bump: minor
2026-08-04 04:17:55 +00:00

15 lines
345 B
Docker

# Node 24 runs TypeScript directly (type stripping) — no build step. Pinned exact tag.
FROM node:24.19.0-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"]