Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -9,7 +9,7 @@ COPY requirements.txt /app/requirements.txt
|
|
| 9 |
|
| 10 |
# Install any dependencies specified in requirements.txt
|
| 11 |
RUN pip install --upgrade pip
|
| 12 |
-
RUN pip install
|
| 13 |
|
| 14 |
# Copy the rest of the working directory contents into the container at /app
|
| 15 |
COPY app.py /app
|
|
|
|
| 9 |
|
| 10 |
# Install any dependencies specified in requirements.txt
|
| 11 |
RUN pip install --upgrade pip
|
| 12 |
+
RUN pip install -r requirements.txt
|
| 13 |
|
| 14 |
# Copy the rest of the working directory contents into the container at /app
|
| 15 |
COPY app.py /app
|