File size: 185 Bytes
227de8e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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"]