Files
ai-agents/Dockerfile
ztimson 1b3232b10c
Some checks failed
Build and publish / Build Container (push) Successful in 1m0s
Code review / review (pull_request) Failing after 5s
Fixed docker file
2025-12-27 20:42:43 -05:00

8 lines
166 B
Docker

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