mirror of
https://github.com/tiennm99/store-scraper-api.git
synced 2026-08-30 00:23:03 +00:00
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.
7 lines
118 B
Docker
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"]
|