Moncey10 commited on
Commit
c35869b
·
verified ·
1 Parent(s): 6fba254

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Start with a standard Python 3.9 environment
2
+ FROM python:3.9
3
+
4
+ # Set the folder where the app will live
5
+ WORKDIR /code
6
+
7
+ # Install your project tools from requirements.txt
8
+ COPY ./requirements.txt /code/requirements.txt
9
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
+
11
+ # Copy your app.py into the server
12
+ COPY . .
13
+
14
+ # Launch your FastAPI app on port 7860
15
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]