mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
chore(docker): skip "recommended" dependencies (#2917)
This commit is contained in:
parent
bce4b1aea9
commit
1cebf8757c
@ -15,7 +15,8 @@ RUN apt-get update && apt-get install -y curl && \
|
||||
apt-get install -y nodejs
|
||||
|
||||
# 2. Install WebKit dependencies
|
||||
RUN apt-get update && apt-get install -y libwoff1 \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libwoff1 \
|
||||
libopus0 \
|
||||
libwebp6 \
|
||||
libwebpdemux2 \
|
||||
@ -32,25 +33,26 @@ RUN apt-get update && apt-get install -y libwoff1 \
|
||||
libvpx5
|
||||
|
||||
# 3. Install gstreamer and plugins to support video playback in WebKit.
|
||||
RUN apt-get update && apt-get install -y libgstreamer-gl1.0-0 \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libgstreamer-gl1.0-0 \
|
||||
libgstreamer-plugins-bad1.0-0 \
|
||||
gstreamer1.0-plugins-good
|
||||
|
||||
# 4. Install Chromium dependencies
|
||||
|
||||
RUN apt-get update && apt-get install -y libnss3 \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libnss3 \
|
||||
libxss1 \
|
||||
libasound2 \
|
||||
fonts-noto-color-emoji
|
||||
|
||||
# 5. Install Firefox dependencies
|
||||
|
||||
RUN apt-get update && apt-get install -y libdbus-glib-1-2 \
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libdbus-glib-1-2 \
|
||||
libxt6
|
||||
|
||||
# 6. Install ffmpeg to bring in audio and video codecs necessary for playing videos in Firefox.
|
||||
|
||||
RUN apt-get update && apt-get install -y ffmpeg
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
ffmpeg
|
||||
|
||||
# 7. Add user so we don't need --no-sandbox in Chromium
|
||||
RUN groupadd -r pwuser && useradd -r -g pwuser -G audio,video pwuser \
|
||||
@ -58,7 +60,8 @@ RUN groupadd -r pwuser && useradd -r -g pwuser -G audio,video pwuser \
|
||||
&& chown -R pwuser:pwuser /home/pwuser
|
||||
|
||||
# 8. (Optional) Install XVFB if there's a need to run browsers in headful mode
|
||||
RUN apt-get update && apt-get install -y xvfb
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
xvfb
|
||||
|
||||
# Run everything after as non-privileged user.
|
||||
# 9. Run everything after as non-privileged user.
|
||||
USER pwuser
|
||||
|
Loading…
x
Reference in New Issue
Block a user