Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +0 -3
Dockerfile
CHANGED
|
@@ -4,9 +4,6 @@ FROM python:3.9-slim
|
|
| 4 |
# Set a working directory.
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
-
# Install system dependencies if needed (e.g., for httpx or other libraries)
|
| 8 |
-
# RUN apt-get update && apt-get install -y gcc
|
| 9 |
-
|
| 10 |
# Copy requirements file and install Python dependencies.
|
| 11 |
COPY requirements.txt .
|
| 12 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
|
|
|
| 4 |
# Set a working directory.
|
| 5 |
WORKDIR /app
|
| 6 |
|
|
|
|
|
|
|
|
|
|
| 7 |
# Copy requirements file and install Python dependencies.
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|