Spaces:
Sleeping
Sleeping
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"] | |