willco-afk commited on
Commit
d4f81f1
·
verified ·
1 Parent(s): 07f99dd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 a compatible version of protobuf (3.19.x)
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