CooLLaMACEO commited on
Commit
c3dfe70
·
verified ·
1 Parent(s): 4b00c79

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Python image
2
+ FROM python:3.9
3
+
4
+ # Create a workspace
5
+ WORKDIR /app
6
+
7
+ # Copy requirements and install them
8
+ COPY requirements.txt .
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ # Copy all your code into the container
12
+ COPY . .
13
+
14
+ # Run the app with Gunicorn for better performance
15
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]