fix: 修复清理缓存路径中的环境变量问题
Some checks failed
Build Server / Compile DLL (push) Has been cancelled

- 修复清理缓存路径中的环境变量问题以确保脚本有效运行。
This commit is contained in:
2025-07-19 15:25:57 +08:00
parent b96edf83a5
commit 64347726f0

View File

@@ -10,7 +10,7 @@ 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 $HOME/.cache/yay/* && \
yay -Scc --noconfirm && rm -rf /root/.cache/yay/* && \
bun install --frozen-lockfile
EXPOSE 3000