Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,9 @@ ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
|
|
| 16 |
# Set the working directory in the container
|
| 17 |
WORKDIR /app
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 19 |
# Copy your requirements.txt into the container
|
| 20 |
COPY requirements.txt .
|
| 21 |
|
|
|
|
| 16 |
# Set the working directory in the container
|
| 17 |
WORKDIR /app
|
| 18 |
|
| 19 |
+
# Upgrade pip to the latest version
|
| 20 |
+
RUN pip install --upgrade pip
|
| 21 |
+
|
| 22 |
# Copy your requirements.txt into the container
|
| 23 |
COPY requirements.txt .
|
| 24 |
|