9 lines
126 B
Docker
9 lines
126 B
Docker
FROM python:3
|
|
|
|
RUN pip3 install --user websockets
|
|
|
|
WORKDIR /opt/
|
|
COPY . /opt/
|
|
|
|
CMD python -u ./simple_server.py --disable-ssl
|