Tanusree88 commited on
Commit
f2d1f42
·
verified ·
1 Parent(s): 013952f

Update Docker

Browse files
Files changed (1) hide show
  1. Docker +1 -2
Docker CHANGED
@@ -23,11 +23,10 @@ RUN pip install --upgrade pip
23
 
24
  # Install the required Python packages
25
  RUN pip install -r requirements.txt
26
- RUN pip install --upgrade transformers
27
 
28
  # Copy the rest of the application code to the working directory
29
  COPY . .
30
 
31
  # Command to run the app with Streamlit
32
  CMD ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]
33
-
 
23
 
24
  # Install the required Python packages
25
  RUN pip install -r requirements.txt
26
+ RUN pip install --upgrade transformers # Upgrade transformers here
27
 
28
  # Copy the rest of the application code to the working directory
29
  COPY . .
30
 
31
  # Command to run the app with Streamlit
32
  CMD ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]