Added review
All checks were successful
Build and publish / Build Container (push) Successful in 1m1s

This commit is contained in:
2025-12-27 19:53:48 -05:00
parent c27802ca44
commit 5d3e15f0f5
3 changed files with 40 additions and 12 deletions

View File

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