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,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" ]