rahim-khan-iitg commited on
Commit
4eb20c8
·
verified ·
1 Parent(s): 3f80b08

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -0
Dockerfile CHANGED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Python image from Docker Hub
2
+ FROM python:3.10-slim
3
+
4
+ # Set the working directory
5
+ WORKDIR /app
6
+
7
+ # Copy the requirements file into the container
8
+ COPY requirements.txt .
9
+
10
+ # Install dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ COPY .env /app/.env
14
+
15
+ # Copy the current directory contents into the container at /app
16
+ COPY . .
17
+
18
+ # Command to run the FastAPI app
19
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]