Auto-Build-1Panel-APP / Dockerfile
Anyexyz's picture
Update Dockerfile
3692d80 verified
raw
history blame contribute delete
393 Bytes
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"]