Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -15,8 +15,11 @@ RUN mkdir -p /app
|
|
| 15 |
|
| 16 |
# Copy all necessary files
|
| 17 |
COPY requirements.txt /app/
|
|
|
|
|
|
|
| 18 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 19 |
|
|
|
|
| 20 |
COPY train.py /app/
|
| 21 |
COPY api.py /app/
|
| 22 |
COPY medical_dataset.json /app/
|
|
|
|
| 15 |
|
| 16 |
# Copy all necessary files
|
| 17 |
COPY requirements.txt /app/
|
| 18 |
+
# Install Python dependencies
|
| 19 |
+
RUN pip install --upgrade pip setuptools
|
| 20 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
| 21 |
|
| 22 |
+
|
| 23 |
COPY train.py /app/
|
| 24 |
COPY api.py /app/
|
| 25 |
COPY medical_dataset.json /app/
|