Files
komodo/frontend-v2/Dockerfile
karamvir 404343e5e7 fix copy
2023-09-09 01:00:46 -07:00

11 lines
261 B
Docker

FROM node:20.5-alpine
WORKDIR /app
COPY ./frontend-v2 ./frontend
COPY ./client/ts ./client
RUN cd client && yarn && yarn build && yarn link
RUN cd frontend && yarn link @monitor/client && yarn && yarn build
CMD cd frontend && yarn preview --host --port 4174