Live video on the AT Protocol
1FROM ubuntu:24.04
2
3# testing container that bundles a big video file. it downloads the video first
4# for efficient docker layer caching
5
6RUN apt-get update && apt-get install -y ca-certificates curl
7RUN curl https://storage.googleapis.com/streamplace-crap/BigBuckBunny_1sGOP_4kp60_NoBframes.mp4 -o /bunny.mp4
8COPY bunny.sh /bunny.sh
9RUN chmod +x /bunny.sh
10
11CMD ["/bunny.sh"]