From 3fd48da2b4d47140b5a982d25a12ab6353fa889c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=B6=E9=9B=A8?= Date: Sat, 6 Sep 2025 16:55:28 +0800 Subject: [PATCH] fix: Remove uv sync command from Dockerfile to streamline installation (#33) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a96b54f..9787bf9 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 && uv pip install gunicorn +RUN uv pip install --system . gunicorn RUN git clone https://github.com/DrizzleTime/FoxelUpgrade /app/migrate