Anyone know how to resolve this error with Docker and Selenium-Firefox?

This page summarizes the projects mentioned and recommended in the original post on /r/docker

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • geckodriver

    WebDriver for Firefox

  • FROM python:3 ENV DEBIAN_FRONTEND noninteractive ENV GECKODRIVER_VER v0.29.0 ENV FIREFOX_VER 87.0 RUN set -x \ && apt update \ && apt upgrade -y \ && apt install -y \ firefox-esr \ && pip install \ requests \ selenium # Add latest FireFox RUN set -x \ && apt install -y \ libx11-xcb1 \ libdbus-glib-1-2 \ && curl -sSLO https://download-installer.cdn.mozilla.net/pub/firefox/releases/${FIREFOX_VER}/linux-x86_64/en-US/firefox-${FIREFOX_VER}.tar.bz2 \ && tar -jxf firefox-* \ && mv firefox /opt/ \ && chmod 755 /opt/firefox \ && chmod 755 /opt/firefox/firefox # Add geckodriver RUN set -x \ && curl -sSLO https://github.com/mozilla/geckodriver/releases/download/${GECKODRIVER_VER}/geckodriver-${GECKODRIVER_VER}-linux64.tar.gz \ && tar zxf geckodriver-*.tar.gz \ && mv geckodriver /usr/local/bin

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts