Files
renovate-bot 7c39056188
CI / full-gate (push) Successful in 2m28s
Mirror / github-mirror (push) Successful in 3s
chore(deps): update node.js to v24.18.0
2026-07-05 07:02:10 +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"]