rr1 commited on
Commit
aaa3795
1 Parent(s): 52359b2

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11
2
+ RUN apt update
3
+ RUN apt install -y git
4
+ RUN git clone https://github.com/renqabs/apga.git /app
5
+ WORKDIR app
6
+ RUN pip install -r requirements.txt
7
+ EXPOSE 7860
8
+ CMD ["python", "main.py"]