mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +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
10 lines
214 B
Docker
10 lines
214 B
Docker
FROM nginx:latest
|
|
|
|
COPY . /usr/share/nginx/html
|
|
|
|
RUN sed -i 's/var default_peer_id;/var default_peer_id = 1;/g' \
|
|
/usr/share/nginx/html/webrtc.js
|
|
RUN sed -i 's/wss/ws/g' \
|
|
/usr/share/nginx/html/webrtc.js
|
|
|
|
|