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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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