Dockerfile 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. FROM docker.io/debian:10.8-slim
  2. # manually installing libgl1 to fix some browser crashes
  3. # and to reduce ubiquitous "Aw, Snap!" errors ("Error code: 6"):
  4. # > [[...]:angle_platform_impl.cc(43)] Display.cpp:833 (initialize): ANGLE Display::initialize error 12289: Could not dlopen libGL.so.1: [...]
  5. # > [[...]:gl_surface_egl.cc(773)] EGL Driver message (Critical) eglInitialize: Could not dlopen libGL.so.1: [...]
  6. # > [[...]:gl_surface_egl.cc(1322)] eglInitialize OpenGL failed with error EGL_NOT_INITIALIZED, trying next display type
  7. # > [[...]:gl_initializer_linux_x11.cc(160)] GLSurfaceEGL::InitializeOneOff failed.
  8. # > [[...]:viz_main_impl.cc(150)] Exiting GPU process due to errors during initialization
  9. # https://brave.com/linux/#release-channel-installation
  10. RUN apt-get update \
  11. && apt-get install --yes --no-install-recommends \
  12. ca-certificates \
  13. gnupg \
  14. libgl1 \
  15. && apt-key adv --keyserver pool.sks-keyservers.net \
  16. --recv-keys D8BAD4DE7EE17AF52A834B2D0BB75829C2D4E821 \
  17. && rm -rf /var/lib/apt/lists/* \
  18. && echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" \
  19. > /etc/apt/sources.list.d/brave-browser-release.list \
  20. && useradd --create-home browser
  21. ARG BRAVE_BROWSER_PACKAGE_VERSION=1.20.110
  22. RUN apt-get update \
  23. && apt-cache policy brave-browser \
  24. && apt-get install --yes --no-install-recommends \
  25. brave-browser=$BRAVE_BROWSER_PACKAGE_VERSION \
  26. && rm -rf /var/lib/apt/lists/* \
  27. && find / -xdev -type f -perm /u+s -exec chmod -c u-s {} \; \
  28. && find / -xdev -type f -perm /g+s -exec chmod -c g-s {} \;
  29. USER browser
  30. VOLUME /home/browser
  31. # --disable-dev-shm-usage to fix some "Aw, Snap!" errors and video playback,
  32. # apparently by resolving:
  33. # > ERROR:broker_posix.cc(46)] Received unexpected number of handles
  34. # https://github.com/WPO-Foundation/wptagent/issues/327#issuecomment-614086842
  35. CMD ["brave-browser", "--no-sandbox"]
  36. # mounts tmpfs at /tmp implicitly
  37. LABEL podman-run-x11="podman run --name brave_browser --rm --init -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -v brave_browser_home:/home/browser --shm-size 1GB --read-only --cap-drop ALL --security-opt no-new-privileges \${IMAGE}"
  38. # https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md
  39. ARG REVISION=
  40. LABEL org.opencontainers.image.title="brave browser" \
  41. org.opencontainers.image.source="https://github.com/fphammerle/docker-brave-browser" \
  42. org.opencontainers.image.revision="$REVISION"