fix(docker): add missing dependencies to docker image (#2963)

This commit is contained in:
Andrey Lushnikov 2020-07-15 17:15:03 -07:00 committed by GitHub
parent b7f7ba9230
commit d750ba38cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1,2 @@
(generated with docker-image-size.sh) (generated with docker-image-size.sh)
224M 225M

View File

@ -30,7 +30,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libxslt1.1 \ libxslt1.1 \
libevent-2.1-6 \ libevent-2.1-6 \
libgles2 \ libgles2 \
libvpx5 libvpx5 \
libxcomposite1 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libepoxy0 \
libgtk-3-0 \
libharfbuzz-icu0
# 3. Install gstreamer and plugins to support video playback in WebKit. # 3. Install gstreamer and plugins to support video playback in WebKit.
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \