File size: 393 Bytes
a5f1f9a
 
 
 
 
 
 
 
e4c07ad
 
a5f1f9a
 
 
 
3692d80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10

WORKDIR /app

COPY . /app

RUN pip install --no-cache-dir -r requirements.txt

RUN chmod -R 777 /app

RUN sed -i 's|Powered by <a href="https://www.pyweb.io/" target="_blank">PyWebIO</a>|Powered by <a href="https://www.anye.xyz/" target="_blank">Anye</a>|g' /usr/local/lib/python3.10/site-packages/pywebio/platform/tpl/index.html

EXPOSE 8080

CMD ["python", "/app/main.py"]