Files
ai-code-review/Dockerfile
T
Jeffery 2f54271c38
CI / Release Tag Version (pull_request) Successful in 6s
CI / AI Code Review (pull_request) Failing after 54s
fix(Dockerfile): 修正 RUN 指令換行與清理路徑導致 build 失敗
2026-07-01 09:51:20 +08:00

15 lines
299 B
Docker

FROM gitea.jsc.idv.tw/images/codex:0.1.1
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"]