Fixed review?
Some checks failed
Build and publish / Build Container (push) Successful in 49s
Code review / review (pull_request) Failing after 3s

This commit is contained in:
2025-12-27 20:48:20 -05:00
parent 1b3232b10c
commit bee0029469
4 changed files with 11 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
FROM node:22
COPY . /ai
RUN cd /ai && npm ci && mkdir -p /github/workspace
RUN cd /ai && npm ci && mkdir -p /app
WORKDIR /github/workspace
ENTRYPOINT ["node", "/ai/src/review.mjs", "/github/workspace"]
WORKDIR /app
ENTRYPOINT ["node", "/ai/src/review.mjs", "/app"]