Adding README amd docker info

This commit is contained in:
Leigh Morresi
2021-01-27 20:51:55 +01:00
parent 325244c3a8
commit 93562afb02
8 changed files with 86 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.8-buster
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
# So that it can find the certs
WORKDIR /app
CMD [ "python", "/app/backend.py" ]

View File

@@ -0,0 +1,20 @@
aiohttp
async-timeout
chardet==2.3.0
multidict
python-engineio
six==1.10.0
yarl
flask
eventlet
requests
validators
bleach==3.2.1
html5lib==0.9999999 # via bleach
timeago
html2text
# @notes
# - Dont install socketio, it interferes with flask_socketio