eatYour commited on
Commit
0bfb860
1 Parent(s): 253b604

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11
2
+ RUN apt update
3
+ RUN apt install git
4
+ RUN git clone https://github.com/BlackNum/reka.git /app
5
+ WORKDIR /app
6
+ RUN pip install -r requirements.txt
7
+ EXPOSE 7860
8
+ ENV PORT=7860
9
+ # gunicorn -k gevent -w 1 --bind 0.0.0.0:8080 app:app
10
+ CMD ["gunicorn", "-k", "gevent", "-w", "1", "--bind", "0.0.0.0:7860", "app:app"]