Uamir commited on
Commit
a936588
·
verified ·
1 Parent(s): c7915a5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -18
Dockerfile CHANGED
@@ -1,18 +1,13 @@
1
- # Use official python image
2
- FROM python:3.9
3
-
4
- # Set working directory
5
- WORKDIR /code
6
-
7
- # Copy requirements and install
8
- COPY requirements.txt .
9
- RUN pip install --no-cache-dir -r requirements.txt
10
-
11
- # Copy all files
12
- COPY . .
13
-
14
- # Expose port
15
- EXPOSE 7860
16
-
17
- # Run FastAPI with uvicorn
18
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /code
4
+
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY . .
9
+
10
+ EXPOSE 7860
11
+
12
+ # Run Streamlit instead of FastAPI
13
+ CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]