Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -19,6 +19,9 @@ WORKDIR /app
|
|
| 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 |
|
|
|
|
| 19 |
# Upgrade pip to the latest version
|
| 20 |
RUN pip install --upgrade pip
|
| 21 |
|
| 22 |
+
# Install protobuf explicitly to avoid conflicts
|
| 23 |
+
RUN pip install protobuf==3.19.4
|
| 24 |
+
|
| 25 |
# Copy your requirements.txt into the container
|
| 26 |
COPY requirements.txt .
|
| 27 |
|