rebuild project with rsbuild

This commit is contained in:
2024-03-27 17:41:49 +03:00
parent be07d304ee
commit f92171ff84
37 changed files with 1368 additions and 15863 deletions

View File

@ -4,8 +4,8 @@ WORKDIR /app
COPY ./app/package-lock.json /app/package-lock.json
COPY ./app/package.json /app/package.json
RUN npm ci
RUN npm i
COPY ./app /app
CMD [ "npm", "start" ]
CMD [ "npm", "run", "dev", "--host", "0.0.0.0", "--port", "3000" ]