New-Bing commited on
Commit
7f1f982
1 Parent(s): ac112a0

Upload Dockerfile.txt

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