tejash300 commited on
Commit
7e827e4
·
verified ·
1 Parent(s): 01961b6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use official Python image
2
+ FROM python:3.9
3
+
4
+ # Set the working directory
5
+ WORKDIR /app
6
+
7
+ # Copy files into the container
8
+ COPY . /app
9
+
10
+ # Install dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ # Expose the required ports
14
+ EXPOSE 8501 8500
15
+
16
+ # Start FastAPI and Streamlit in parallel
17
+ CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port 8500 & streamlit run app_ui.py --server.port 8501 --server.address 0.0.0.0"]