forked from github-starred/komodo
* add close alert threshold to prevent Ok - Warning back and forth * remove part about repo being deleted, no longer behavior * resource sync share general common * remove this changelog. use releases * remove changelog from readme * write commit file clean up path * docs: supports any git provider repo * fix docs: authorization * multiline command supports escaped newlines * move webhook to build config advanced * parser comments with escaped newline * improve parser * save use Enter. escape monaco using escape * improve logic when deployment / stack action buttons shown * used_mem = total - available * Fix unrecognized path have 404 * webhooks will 404 if misconfigured * move update logger / alerter * delete migrator * update examples * publish typescript client komodo_client
16 lines
343 B
Docker
16 lines
343 B
Docker
FROM node:20.12-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./frontend ./frontend
|
|
COPY ./client/core/ts ./client
|
|
|
|
ARG VITE_KOMODO_HOST
|
|
ENV VITE_KOMODO_HOST ${VITE_KOMODO_HOST}
|
|
|
|
RUN cd client && yarn && yarn build && yarn link
|
|
RUN cd frontend && yarn link komodo_client && yarn && yarn build
|
|
|
|
ENV PORT 4174
|
|
|
|
CMD cd frontend && yarn preview --host --port ${PORT} |