Adding README amd docker info
This commit is contained in:
9
backend/production-docker/Dockerfile
Normal file
9
backend/production-docker/Dockerfile
Normal 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" ]
|
||||
|
||||
20
backend/production-docker/requirements.txt
Normal file
20
backend/production-docker/requirements.txt
Normal 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
|
||||
Reference in New Issue
Block a user