remove unused runserver.py

pull/1/head
radex 2023-09-19 18:45:24 +02:00
parent a5c5de7de4
commit f6bf424191
2 changed files with 0 additions and 3 deletions

View File

@ -24,7 +24,6 @@ RUN set -e -x ;\
python3 -m venv /app/venv ;\
/app/venv/bin/pip install -r /app/requirements.txt
COPY --chown=app runserver.py /app/
COPY --chown=app webapp /app/webapp
WORKDIR /app

View File

@ -1,2 +0,0 @@
from webapp import app
app.run('0.0.0.0', 20007, debug=True)