ci: update Dockerfile (#1420)

* ci: update Dockerfile

* ci: update Dockerfile

* ci: no `--locked`
This commit is contained in:
Junyan Qin (Chin)
2025-05-14 19:29:44 +08:00
committed by GitHub
parent c6ff33c6ab
commit 4ed854d7b8
2 changed files with 3 additions and 2 deletions

View File

@@ -16,5 +16,5 @@
- [ ] 相关 issues 链接了吗?
- [ ] 配置项写好了吗?迁移写好了吗?生效了吗?
- [ ] 依赖requirements.txt 和 core/bootutils/deps.py 了吗
- [ ] 依赖pyproject.toml 和 core/bootutils/deps.py 了吗
- [ ] 文档编写了吗?

View File

@@ -16,7 +16,8 @@ COPY --from=node /app/web/out ./web/out
RUN apt update \
&& apt install gcc -y \
&& python -m pip install -r requirements.txt \
&& python -m pip install --no-cache-dir uv \
&& uv sync \
&& touch /.dockerenv
CMD [ "python", "main.py" ]