9 lines
83 B
Docker
9 lines
83 B
Docker
FROM node:21.6
|
|
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
RUN npm run build
|
|
|
|
CMD ["npm", "run", "start"]
|