Files
ai-agents/Dockerfile
ztimson bee0029469
Some checks failed
Build and publish / Build Container (push) Successful in 49s
Code review / review (pull_request) Failing after 3s
Fixed review?
2025-12-27 20:48:20 -05:00

8 lines
127 B
Docker

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