fix(Dockerfile): 修正 RUN 指令換行與清理路徑導致 build 失敗
CI / Release Tag Version (pull_request) Successful in 6s
CI / AI Code Review (pull_request) Failing after 54s

This commit is contained in:
Jeffery
2026-07-01 09:51:20 +08:00
parent b3878b9860
commit 2f54271c38
+2 -2
View File
@@ -1,9 +1,9 @@
FROM gitea.jsc.idv.tw/images/codex:0.1.1 FROM gitea.jsc.idv.tw/images/codex:0.1.1
RUN apt update \ RUN apt update \
&& apt install -y --no-install-recommends git && apt install -y --no-install-recommends git \
&& apt clean \ && apt clean \
&& rm -rf /var/lib/apt/lists/*s && rm -rf /var/lib/apt/lists/*
COPY ./app /app COPY ./app /app
RUN cd /app && npm install RUN cd /app && npm install