Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
|
@@ -22,10 +22,7 @@ RUN pip install --upgrade pip
|
|
| 22 |
# Copy your requirements.txt into the container
|
| 23 |
COPY requirements.txt .
|
| 24 |
|
| 25 |
-
# Install
|
| 26 |
-
RUN pip install protobuf==3.19.4
|
| 27 |
-
|
| 28 |
-
# Install Python dependencies from requirements.txt
|
| 29 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 30 |
|
| 31 |
# Install streamlit and other needed packages
|
|
|
|
| 22 |
# Copy your requirements.txt into the container
|
| 23 |
COPY requirements.txt .
|
| 24 |
|
| 25 |
+
# Install Python dependencies from requirements.txt (will handle protobuf automatically)
|
|
|
|
|
|
|
|
|
|
| 26 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 27 |
|
| 28 |
# Install streamlit and other needed packages
|