Files
ai-code-review/Dockerfile
Jeffery 3a904f9ede
CI / Release Tag Version (pull_request) Successful in 6s
CI / AI Code Review (pull_request) Failing after 2m1s
feat(Dockerfile): 更新映像檔版本號
2026-07-01 10:09:25 +08:00

15 lines
299 B
Docker

FROM gitea.jsc.idv.tw/images/codex:0.1.2
RUN apt update \
&& apt install -y --no-install-recommends git \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*
COPY ./app /app
RUN cd /app && npm install
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]