Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 23, 2024
1 parent a40ee2c commit 331a563
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Copy only requirements first for better caching
COPY requirements.txt .

# Install Python dependencies
# Install Python dependencies with increased timeout and retry
RUN pip install --upgrade pip && \
pip install -r requirements.txt
pip install --default-timeout=100 --retries=5 -r requirements.txt

# Copy the application code
FROM base
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ classifiers = [
python = "^3.10"
swarms = "*"
asyncio = "*"
signal = "*"
time = "*"
uuid = "*"
contextlib = "*"
datetime = "*"
typing = "*"
orjson = "*"
Expand Down
4 changes: 0 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
asyncio
signal
time
uuid
concurrent.futures
contextlib
datetime
typing
orjson
Expand Down

0 comments on commit 331a563

Please sign in to comment.