Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -26,8 +26,11 @@ COPY ./requirements.txt /app/requirements.txt
|
|
26 |
# Install the Python dependencies
|
27 |
RUN pip install -r /app/requirements.txt
|
28 |
|
|
|
|
|
|
|
29 |
# Expose port 7860 for the FastAPI application
|
30 |
EXPOSE 7860
|
31 |
|
32 |
# Command to start the Streamlit app
|
33 |
-
CMD ["streamlit", "run", "--server.port", "7860", "app.py"]
|
|
|
26 |
# Install the Python dependencies
|
27 |
RUN pip install -r /app/requirements.txt
|
28 |
|
29 |
+
# Install streamlit
|
30 |
+
RUN pip install streamlit
|
31 |
+
|
32 |
# Expose port 7860 for the FastAPI application
|
33 |
EXPOSE 7860
|
34 |
|
35 |
# Command to start the Streamlit app
|
36 |
+
CMD ["streamlit", "run", "--server.port", "7860", "app.py"]
|