summaryrefslogtreecommitdiffhomepage
path: root/images
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-07-27 10:06:07 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-27 10:10:14 -0700
commit77552f1c770da7413c3c8212443328c9081901c0 (patch)
tree312b96012165958d9a0721aba07f5159127f7406 /images
parent29e5609b228363bcc435a8828f9b6ee19018a525 (diff)
Port ffmpeg benchmark
PiperOrigin-RevId: 323383320
Diffstat (limited to 'images')
-rw-r--r--images/benchmarks/ffmpeg/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/images/benchmarks/ffmpeg/Dockerfile b/images/benchmarks/ffmpeg/Dockerfile
new file mode 100644
index 000000000..7108df64f
--- /dev/null
+++ b/images/benchmarks/ffmpeg/Dockerfile
@@ -0,0 +1,9 @@
+FROM ubuntu:18.04
+
+RUN set -x \
+ && apt-get update \
+ && apt-get install -y \
+ ffmpeg \
+ && rm -rf /var/lib/apt/lists/*
+WORKDIR /media
+ADD https://samples.ffmpeg.org/MPEG-4/video.mp4 video.mp4