Spaces:
Sleeping
Sleeping
Update Docker
Browse files
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"]
|
|