docker file & docker compose change

This commit is contained in:
2026-04-30 12:38:32 +08:00
parent d00ff12ba0
commit 5dedd19c0a
2 changed files with 6 additions and 2 deletions

View File

@@ -7,7 +7,11 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
COPY requirements/base.txt requirements/base.txt
RUN pip install --no-cache-dir -r requirements/base.txt
RUN pip install --no-cache-dir \
--proxy http://host.docker.internal:10808 \
--timeout 120 \
-r requirements/base.txt
COPY . .