Files
ai-agents/Dockerfile
ztimson 5d3e15f0f5
All checks were successful
Build and publish / Build Container (push) Successful in 1m1s
Added review
2025-12-27 19:53:48 -05:00

8 lines
169 B
Docker

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