sikeaditya commited on
Commit
ce32716
·
verified ·
1 Parent(s): e006290

Upload 3 files

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. Dockerfile +9 -0
  3. requirements.txt +5 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /AIO
2
+ .env
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ flask==2.0.1
2
+ Werkzeug==2.0.1
3
+ google-generativeai==0.3.2
4
+ python-dotenv==0.19.1
5
+ gunicorn==20.1.0