compatibility websocket server / add non ssl echo_server which does not run into the ssl error (#140)

This commit is contained in:
Benjamin Sergeant
2020-01-12 10:34:33 -08:00
parent 9651f3823d
commit a01584ad9d
6 changed files with 1448 additions and 7 deletions

View File

@ -1,6 +1,9 @@
FROM python:3.8.0-alpine3.10
RUN pip install websockets
COPY vendor/protocol.py /usr/local/lib/python3.8/site-packages/websockets/protocol.py
COPY *.py /usr/bin/
COPY entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/*.py