Files
tiennm99 93796a16a5 build: move from pnpm to npm
Replace pnpm-lock.yaml with package-lock.json. The three overrides move to
package.json#overrides, including the request -> @cypress/request alias, which
npm supports as an override value. allowBuilds for es5-ext becomes
package.json#allowScripts. The Dockerfile installs with npm ci instead of
enabling corepack.
2026-08-17 12:17:53 +07:00

7 lines
118 B
Docker

FROM node:24-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
CMD ["node", "server.js"]