abishekcodes commited on
Commit
c626dea
·
verified ·
1 Parent(s): fbdfd5c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +23 -0
Dockerfile ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.9-slim
3
+
4
+ # Set the working directory in the container
5
+ WORKDIR /code
6
+
7
+ # Copy the requirements file into the container at /code
8
+ COPY ./requirements.txt /code/requirements.txt
9
+
10
+ # Install any needed packages specified in requirements.txt
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
+
13
+ # Copy the rest of the application's code into the container at /code
14
+ COPY ./app /code/app
15
+ COPY ./frontend /code/frontend
16
+ COPY ./main.py /code/main.py
17
+
18
+ # Expose the port the app runs on
19
+ EXPOSE 8000
20
+
21
+ # Define the command to run your app using uvicorn
22
+ # This will start the FastAPI server
23
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]