X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/302a53d767a468a7bd4d716a1a0eba8ba38ad09b..e9de1537f924c0ceb9c42086da5a54abba268126:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 37d6edda5..c85a64046 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN apt-get update \ curl \ default-jre-headless \ file \ + gpg-agent \ libarchive-dev \ libffi-dev \ libgd-dev \ @@ -18,13 +19,20 @@ RUN apt-get update \ libxml2-dev \ libxslt1-dev \ locales \ - nodejs \ postgresql-client \ ruby3.0 \ ruby3.0-dev \ + software-properties-common \ tzdata \ unzip \ - yarnpkg \ + nodejs \ + npm \ + && npm install --global yarn \ + # We can't use snap packages for firefox inside a container, so we need to get firefox+geckodriver elsewhere + && add-apt-repository -y ppa:mozillateam/ppa \ + && echo "Package: *\nPin: release o=LP-PPA-mozillateam\nPin-Priority: 1001" > /etc/apt/preferences.d/mozilla-firefox \ + && apt-get install --no-install-recommends -y \ + firefox-geckodriver \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*