update timeout

This commit is contained in:
2025-12-05 23:47:18 -05:00
parent 44901a44b7
commit ac1a7cfba2
2 changed files with 49 additions and 1 deletions

View File

@@ -17,7 +17,8 @@ WORKDIR /app
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Increase pip timeout for large packages like TTS
RUN pip install --no-cache-dir --timeout=1000 -r requirements.txt
# Copy application files
COPY bot.py .