Files
ai-code-review/Dockerfile
T

11 lines
203 B
Docker

FROM node:24-alpine
RUN apk add --no-cache git ca-certificates
COPY src/ /action/src/
COPY entrypoint.sh /action/entrypoint.sh
RUN chmod +x /action/entrypoint.sh
ENTRYPOINT ["/action/entrypoint.sh"]