Prathamesh1420 commited on
Commit
fd6026b
·
verified ·
1 Parent(s): 1ff350d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +27 -0
Dockerfile ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Python slim image
2
+ FROM python:3.9-slim
3
+
4
+ # Set the working directory inside the container
5
+ WORKDIR /app
6
+
7
+ # Install system dependencies
8
+ RUN apt-get update && apt-get install -y \
9
+ build-essential \
10
+ libffi-dev \
11
+ libssl-dev \
12
+ && rm -rf /var/lib/apt/lists/*
13
+
14
+ # Copy the requirements file to the working directory
15
+ COPY requirements.txt /app
16
+
17
+ # Install Python dependencies
18
+ RUN pip install --no-cache-dir -r requirements.txt
19
+
20
+ # Copy the rest of the application code to the working directory
21
+ COPY . /app
22
+
23
+ # Expose the FastAPI default port
24
+ EXPOSE 8000
25
+
26
+ # Command to run your application using Uvicorn
27
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]