Reaperxxxx commited on
Commit
1c6caea
·
verified ·
1 Parent(s): fe83e69

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ RUN apt update && apt install -y git && apt clean
3
+ RUN git clone https://github.com/reaperofssa/Lone /app
4
+ WORKDIR /app
5
+ RUN chmod -R 777 .
6
+ RUN pip install flask pillow requests werkzeug
7
+ EXPOSE 7860
8
+ CMD ["python", "app.py"]