chore: 优化Docker构建流程删除缓存命令
Some checks failed
Build Server / Compile DLL (push) Failing after 2m24s

- 删除清理缓存的命令以优化Docker构建过程。
This commit is contained in:
2025-07-19 15:26:36 +08:00
parent 64347726f0
commit 95b658527a

View File

@@ -9,8 +9,6 @@ WORKDIR /app
COPY . .
COPY --from=lib /src/wcocr/build/libwcocr.so .
RUN aur-install bun-bin wechat-bin && \
pacman -Scc --noconfirm && rm -rf /var/cache/pacman/pkg/* && \
yay -Scc --noconfirm && rm -rf /root/.cache/yay/* && \
bun install --frozen-lockfile
EXPOSE 3000