Files
2024-09-29 00:00:22 +03:00

11 lines
97 B
Docker

FROM node:20
WORKDIR /usr/src/app
COPY . .
RUN npm i
CMD ["npm","run","dev","--","--host"]