Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
375 B · 11 lines
123456789101112FROM ubuntu:24.04
# testing container that bundles a big video file. it downloads the video first# for efficient docker layer caching
RUN apt-get update && apt-get install -y ca-certificates curlRUN curl https://storage.googleapis.com/streamplace-crap/BigBuckBunny_1sGOP_4kp60_NoBframes.mp4 -o /bunny.mp4COPY bunny.sh /bunny.shRUN chmod +x /bunny.sh
CMD ["/bunny.sh"]