| FROM python:3.10 | |
| EXPOSE 7860 | |
| WORKDIR /app | |
| COPY ./ /app | |
| RUN pip3 install -r requirements.txt \ | |
| && chmod 777 -R /app \ | |
| && chmod a+x -R /app | |
| ENTRYPOINT ["python3", "potato.py"] | |
| FROM python:3.10 | |
| EXPOSE 7860 | |
| WORKDIR /app | |
| COPY ./ /app | |
| RUN pip3 install -r requirements.txt \ | |
| && chmod 777 -R /app \ | |
| && chmod a+x -R /app | |
| ENTRYPOINT ["python3", "potato.py"] | |