Files
ai-code-review/Dockerfile
T
Jeffery 5a07f03abb
CI / Release Tag Version (pull_request) Successful in 2m23s
CI / AI Code Review (pull_request) Failing after 34s
feat(Dockerfile): 修改映像檔來源
2026-06-30 13:50:58 +08:00

15 lines
307 B
Docker

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