| FROM python:3.11-slim | |
| RUN apt update && apt install -y git && apt clean | |
| RUN git clone https://github.com/reaperofssa/Lone /app | |
| WORKDIR /app | |
| RUN chmod -R 777 . | |
| RUN pip install flask pillow requests werkzeug | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |
| FROM python:3.11-slim | |
| RUN apt update && apt install -y git && apt clean | |
| RUN git clone https://github.com/reaperofssa/Lone /app | |
| WORKDIR /app | |
| RUN chmod -R 777 . | |
| RUN pip install flask pillow requests werkzeug | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |