Files
ai-code-review/Dockerfile
T
Jeffery b3878b9860
CI / Release Tag Version (pull_request) Successful in 7s
CI / AI Code Review (pull_request) Failing after 6s
feat(Dockerfile): 固定版本號
2026-07-01 09:44:53 +08:00

15 lines
298 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/*s
COPY ./app /app
RUN cd /app && npm install
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]