mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
13 lines
380 B
Docker
13 lines
380 B
Docker
FROM maxmcd/gstreamer:1.14-buster
|
|
|
|
RUN apt-get install -y curl
|
|
RUN wget -O rustup.sh https://sh.rustup.rs && sh ./rustup.sh -y
|
|
ENV PATH=$PATH:/root/.cargo/bin/
|
|
|
|
WORKDIR /opt/
|
|
COPY . /opt/
|
|
RUN cargo build
|
|
|
|
CMD echo "Waiting a few seconds for you to open the browser at localhost:8080" \
|
|
&& sleep 10 \
|
|
&& /opt/target/debug/gst-rust --peer-id=1 --server=ws://signalling:8443
|