mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
11 lines
258 B
Docker
11 lines
258 B
Docker
FROM node:20.5-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./frontend ./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 |