mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
bb56d6eab7
This also comes with a docker image to collect all dependencies and build everything. Fixes https://github.com/centricular/gstwebrtc-demos/pull/20
13 lines
266 B
Docker
13 lines
266 B
Docker
FROM python:3
|
|
|
|
RUN pip3 install --user websockets
|
|
|
|
WORKDIR /opt/
|
|
COPY . /opt/
|
|
|
|
RUN sed -i 's/sslctx.load_cert_chain(chain_pem, keyfile=key_pem)/pass/g' \
|
|
./simple-server.py
|
|
RUN sed -i 's/ssl=sslctx,//g' \
|
|
./simple-server.py
|
|
|
|
CMD python -u ./simple-server.py
|