From c759b36aba8d0c8d6ba0c857928d83c7415a847b Mon Sep 17 00:00:00 2001 From: shiyu Date: Sat, 6 Sep 2025 16:29:27 +0800 Subject: [PATCH] fix: Remove --system flag from uv sync command in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05c2652..a96b54f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y nginx git && rm -rf /var/lib/apt/lists/ RUN pip install uv COPY pyproject.toml uv.lock ./ -RUN uv sync --system && uv pip install gunicorn +RUN uv sync && uv pip install gunicorn RUN git clone https://github.com/DrizzleTime/FoxelUpgrade /app/migrate