Files
plainpages/Dockerfile
T
renovate-bot 9c5b521ede
CI / full-gate (push) Successful in 2m48s
chore(deps): update node.js to v24.18.0
2026-07-05 06:56:24 +00:00

15 lines
345 B
Docker

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