9 lines
108 B
Docker
9 lines
108 B
Docker
FROM node:24-slim
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
RUN npm run init
|
|
|
|
CMD [ "node", "dist" ]
|