Create Dockerfile
Browse files- 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"]
|