Bijoy09 commited on
Commit
3e4aa34
1 Parent(s): 3f6c2a7

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ # Set working directory
4
+ WORKDIR /app
5
+
6
+ # Copy project files
7
+ COPY . /app
8
+
9
+ # Install dependencies
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ # Expose the port that the app will run on
13
+ EXPOSE 7860
14
+
15
+ # Command to run the FastAPI app with Uvicorn
16
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]