7 lines
64 B
Docker
7 lines
64 B
Docker
FROM node:22
|
|
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
|
|
CMD [ "npm", "run", "start" ] |