mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8 lines
126 B
Docker
8 lines
126 B
Docker
FROM python:3
|
|
|
|
RUN pip3 install --user websockets
|
|
|
|
WORKDIR /opt/
|
|
COPY . /opt/
|
|
|
|
CMD python -u ./simple_server.py --disable-ssl
|