forked from CircleCI-Archived/circleci-dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfiles from https://circleci.com/gh/circleci/circleci-images/29171
- Loading branch information
1 parent
3e4d048
commit 0887ff5
Showing
24 changed files
with
2,092 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM php:7.4.0-apache-buster | ||
|
||
# make Apt non-interactive | ||
RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90circleci \ | ||
&& echo 'DPkg::Options "--force-confnew";' >> /etc/apt/apt.conf.d/90circleci | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Debian Jessie is EOL'd and original repos don't work. | ||
# Switch to the archive mirror until we can get people to | ||
# switch to Stretch. | ||
RUN if grep -q Debian /etc/os-release && grep -q jessie /etc/os-release; then \ | ||
rm /etc/apt/sources.list \ | ||
&& echo "deb http://archive.debian.org/debian/ jessie main" >> /etc/apt/sources.list \ | ||
&& echo "deb http://security.debian.org/debian-security jessie/updates main" >> /etc/apt/sources.list \ | ||
; fi | ||
|
||
# Make sure PATH includes ~/.local/bin | ||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=839155 | ||
# This only works for root. The circleci user is done near the end of this Dockerfile | ||
RUN echo 'PATH="$HOME/.local/bin:$PATH"' >> /etc/profile.d/user-local-path.sh | ||
|
||
# man directory is missing in some base images | ||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 | ||
RUN apt-get update \ | ||
&& mkdir -p /usr/share/man/man1 \ | ||
&& apt-get install -y \ | ||
git mercurial xvfb apt \ | ||
locales sudo openssh-client ca-certificates tar gzip parallel \ | ||
net-tools netcat unzip zip bzip2 gnupg curl wget make | ||
|
||
|
||
# Set timezone to UTC by default | ||
RUN ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime | ||
|
||
# Use unicode | ||
RUN locale-gen C.UTF-8 || true | ||
ENV LANG=C.UTF-8 | ||
|
||
# install jq | ||
RUN JQ_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/jq-latest" \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /usr/bin/jq $JQ_URL \ | ||
&& chmod +x /usr/bin/jq \ | ||
&& jq --version | ||
|
||
# Install Docker | ||
|
||
# Docker.com returns the URL of the latest binary when you hit a directory listing | ||
# We curl this URL and `grep` the version out. | ||
# The output looks like this: | ||
|
||
#> # To install, run the following commands as root: | ||
#> curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-17.05.0-ce.tgz && tar --strip-components=1 -xvzf docker-17.05.0-ce.tgz -C /usr/local/bin | ||
#> | ||
#> # Then start docker in daemon mode: | ||
#> /usr/local/bin/dockerd | ||
|
||
RUN set -ex \ | ||
&& export DOCKER_VERSION=$(curl --silent --fail --retry 3 https://download.docker.com/linux/static/stable/x86_64/ | grep -o -e 'docker-[.0-9]*\.tgz' | sort -r | head -n 1) \ | ||
&& DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/${DOCKER_VERSION}" \ | ||
&& echo Docker URL: $DOCKER_URL \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/docker.tgz "${DOCKER_URL}" \ | ||
&& ls -lha /tmp/docker.tgz \ | ||
&& tar -xz -C /tmp -f /tmp/docker.tgz \ | ||
&& mv /tmp/docker/* /usr/bin \ | ||
&& rm -rf /tmp/docker /tmp/docker.tgz \ | ||
&& which docker \ | ||
&& (docker version || true) | ||
|
||
# docker compose | ||
RUN COMPOSE_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/docker-compose-latest" \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /usr/bin/docker-compose $COMPOSE_URL \ | ||
&& chmod +x /usr/bin/docker-compose \ | ||
&& docker-compose version | ||
|
||
# install dockerize | ||
RUN DOCKERIZE_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/dockerize-latest.tar.gz" \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/dockerize-linux-amd64.tar.gz $DOCKERIZE_URL \ | ||
&& tar -C /usr/local/bin -xzvf /tmp/dockerize-linux-amd64.tar.gz \ | ||
&& rm -rf /tmp/dockerize-linux-amd64.tar.gz \ | ||
&& dockerize --version | ||
|
||
RUN groupadd --gid 3434 circleci \ | ||
&& useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci \ | ||
&& echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci \ | ||
&& echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep | ||
|
||
# BEGIN IMAGE CUSTOMIZATIONS | ||
|
||
RUN echo 'Defaults env_keep += "PHP_INI_DIR"' >> /etc/sudoers.d/env_keep | ||
|
||
# Install composer | ||
RUN php -r "copy('https://raw.githubusercontent.com/composer/getcomposer.org/master/web/installer', 'composer-setup.php');" && \ | ||
php composer-setup.php && \ | ||
php -r "unlink('composer-setup.php');" && \ | ||
mv composer.phar /usr/local/bin/composer | ||
|
||
# Install XDebug | ||
RUN (pecl install xdebug || pecl install xdebug-2.5.5 || pecl install xdebug-2.7.1) && docker-php-ext-enable xdebug | ||
|
||
# Install common extensions | ||
RUN apt install -y libicu-dev zlib1g-dev libzip-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
RUN docker-php-ext-configure intl && docker-php-ext-install intl | ||
RUN docker-php-ext-install zip | ||
# END IMAGE CUSTOMIZATIONS | ||
|
||
USER circleci | ||
ENV PATH /home/circleci/.local/bin:/home/circleci/bin:${PATH} | ||
|
||
CMD ["/bin/sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM circleci/php:7.4.0-apache-buster | ||
|
||
# | ||
# Install Java 11 LTS / OpenJDK 11 | ||
# | ||
RUN if grep -q Debian /etc/os-release && grep -q stretch /etc/os-release; then \ | ||
echo 'deb http://deb.debian.org/debian stretch-backports main' | sudo tee -a /etc/apt/sources.list.d/stretch-backports.list; \ | ||
elif grep -q Ubuntu /etc/os-release && grep -q xenial /etc/os-release; then \ | ||
sudo apt-get update && sudo apt-get install -y software-properties-common && \ | ||
sudo add-apt-repository -y ppa:openjdk-r/ppa; \ | ||
fi && \ | ||
sudo apt-get update && sudo apt-get install -y openjdk-11-jre openjdk-11-jre-headless openjdk-11-jdk openjdk-11-jdk-headless && \ | ||
sudo apt-get install -y bzip2 libgconf-2-4 # for extracting firefox and running chrome, respectively | ||
|
||
ENV OPENSSL_CONF / | ||
|
||
## install phantomjs | ||
# | ||
RUN PHANTOMJS_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/phantomjs-latest.tar.bz2" \ | ||
&& sudo apt-get install libfontconfig \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/phantomjs.tar.bz2 ${PHANTOMJS_URL} \ | ||
&& tar -x -C /tmp -f /tmp/phantomjs.tar.bz2 \ | ||
&& sudo mv /tmp/phantomjs-*-linux-x86_64/bin/phantomjs /usr/local/bin \ | ||
&& rm -rf /tmp/phantomjs.tar.bz2 /tmp/phantomjs-* \ | ||
&& phantomjs --version | ||
|
||
# install firefox | ||
|
||
# If you are upgrading to any version newer than 47.0.1, you must check the compatibility with | ||
# selenium. See https://github.com/SeleniumHQ/selenium/issues/2559#issuecomment-237079591 | ||
|
||
RUN FIREFOX_URL="https://s3.amazonaws.com/circle-downloads/firefox-mozilla-build_47.0.1-0ubuntu1_amd64.deb" \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.deb $FIREFOX_URL \ | ||
&& echo 'ef016febe5ec4eaf7d455a34579834bcde7703cb0818c80044f4d148df8473bb /tmp/firefox.deb' | sha256sum -c \ | ||
&& sudo dpkg -i /tmp/firefox.deb || sudo apt-get -f install \ | ||
&& sudo apt-get install -y libgtk3.0-cil-dev libasound2 libasound2 libdbus-glib-1-2 libdbus-1-3 \ | ||
&& rm -rf /tmp/firefox.deb \ | ||
&& firefox --version | ||
|
||
# install geckodriver—disabling this temporarily, we will likely want this code in the future, but until we're ready to upgrade our version of firefox to 53+, geckodriver wont' be compatible... | ||
|
||
# RUN export GECKODRIVER_LATEST_RELEASE_URL=$(curl https://api.github.com/repos/mozilla/geckodriver/releases/latest | jq -r ".assets[] | select(.name | test(\"linux64\")) | .browser_download_url") \ | ||
# && curl --silent --show-error --location --fail --retry 3 --output /tmp/geckodriver_linux64.tar.gz "$GECKODRIVER_LATEST_RELEASE_URL" \ | ||
# && cd /tmp \ | ||
# && tar xf geckodriver_linux64.tar.gz \ | ||
# && rm -rf geckodriver_linux64.tar.gz \ | ||
# && sudo mv geckodriver /usr/local/bin/geckodriver \ | ||
# && sudo chmod +x /usr/local/bin/geckodriver \ | ||
# && geckodriver --version | ||
|
||
# install chrome | ||
|
||
RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ | ||
&& (sudo dpkg -i /tmp/google-chrome-stable_current_amd64.deb || sudo apt-get -fy install) \ | ||
&& rm -rf /tmp/google-chrome-stable_current_amd64.deb \ | ||
&& sudo sed -i 's|HERE/chrome"|HERE/chrome" --disable-setuid-sandbox --no-sandbox|g' \ | ||
"/opt/google/chrome/google-chrome" \ | ||
&& google-chrome --version | ||
|
||
RUN CHROME_VERSION="$(google-chrome --version)" \ | ||
&& export CHROMEDRIVER_RELEASE="$(echo $CHROME_VERSION | sed 's/^Google Chrome //')" && export CHROMEDRIVER_RELEASE=${CHROMEDRIVER_RELEASE%%.*} \ | ||
&& CHROMEDRIVER_VERSION=$(curl --silent --show-error --location --fail --retry 4 --retry-delay 5 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROMEDRIVER_RELEASE}) \ | ||
&& curl --silent --show-error --location --fail --retry 4 --retry-delay 5 --output /tmp/chromedriver_linux64.zip "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip" \ | ||
&& cd /tmp \ | ||
&& unzip chromedriver_linux64.zip \ | ||
&& rm -rf chromedriver_linux64.zip \ | ||
&& sudo mv chromedriver /usr/local/bin/chromedriver \ | ||
&& sudo chmod +x /usr/local/bin/chromedriver \ | ||
&& chromedriver --version | ||
|
||
# install libgconf-2-4 manually since chrome no longer pulls it in automatically | ||
RUN sudo apt-get install -y libgconf-2-4 | ||
|
||
# start xvfb automatically to avoid needing to express in circle.yml | ||
ENV DISPLAY :99 | ||
RUN printf '#!/bin/sh\nXvfb :99 -screen 0 1280x1024x24 &\nexec "$@"\n' > /tmp/entrypoint \ | ||
&& chmod +x /tmp/entrypoint \ | ||
&& sudo mv /tmp/entrypoint /docker-entrypoint.sh | ||
|
||
# ensure that the build agent doesn't override the entrypoint | ||
LABEL com.circleci.preserve-entrypoint=true | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
CMD ["/bin/sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM circleci/php:7.4.0-apache-buster | ||
|
||
# | ||
# Install Java 11 LTS / OpenJDK 11 | ||
# | ||
RUN if grep -q Debian /etc/os-release && grep -q stretch /etc/os-release; then \ | ||
echo 'deb http://deb.debian.org/debian stretch-backports main' | sudo tee -a /etc/apt/sources.list.d/stretch-backports.list; \ | ||
elif grep -q Ubuntu /etc/os-release && grep -q xenial /etc/os-release; then \ | ||
sudo apt-get update && sudo apt-get install -y software-properties-common && \ | ||
sudo add-apt-repository -y ppa:openjdk-r/ppa; \ | ||
fi && \ | ||
sudo apt-get update && sudo apt-get install -y openjdk-11-jre openjdk-11-jre-headless openjdk-11-jdk openjdk-11-jdk-headless && \ | ||
sudo apt-get install -y bzip2 libgconf-2-4 # for extracting firefox and running chrome, respectively | ||
|
||
# install firefox | ||
# | ||
RUN FIREFOX_URL="https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US" \ | ||
&& ACTUAL_URL=$(curl -Ls -o /dev/null -w %{url_effective} $FIREFOX_URL) \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.tar.bz2 $ACTUAL_URL \ | ||
&& sudo tar -xvjf /tmp/firefox.tar.bz2 -C /opt \ | ||
&& sudo ln -s /opt/firefox/firefox /usr/local/bin/firefox \ | ||
&& sudo apt-get install -y libgtk3.0-cil-dev libasound2 libasound2 libdbus-glib-1-2 libdbus-1-3 \ | ||
&& rm -rf /tmp/firefox.* \ | ||
&& firefox --version | ||
|
||
# install geckodriver | ||
|
||
RUN export GECKODRIVER_LATEST_RELEASE_URL=$(curl https://api.github.com/repos/mozilla/geckodriver/releases/latest | jq -r ".assets[] | select(.name | test(\"linux64\")) | .browser_download_url") \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/geckodriver_linux64.tar.gz "$GECKODRIVER_LATEST_RELEASE_URL" \ | ||
&& cd /tmp \ | ||
&& tar xf geckodriver_linux64.tar.gz \ | ||
&& rm -rf geckodriver_linux64.tar.gz \ | ||
&& sudo mv geckodriver /usr/local/bin/geckodriver \ | ||
&& sudo chmod +x /usr/local/bin/geckodriver \ | ||
&& geckodriver --version | ||
|
||
# install chrome | ||
|
||
RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ | ||
&& (sudo dpkg -i /tmp/google-chrome-stable_current_amd64.deb || sudo apt-get -fy install) \ | ||
&& rm -rf /tmp/google-chrome-stable_current_amd64.deb \ | ||
&& sudo sed -i 's|HERE/chrome"|HERE/chrome" --disable-setuid-sandbox --no-sandbox|g' \ | ||
"/opt/google/chrome/google-chrome" \ | ||
&& google-chrome --version | ||
|
||
RUN CHROME_VERSION="$(google-chrome --version)" \ | ||
&& export CHROMEDRIVER_RELEASE="$(echo $CHROME_VERSION | sed 's/^Google Chrome //')" && export CHROMEDRIVER_RELEASE=${CHROMEDRIVER_RELEASE%%.*} \ | ||
&& CHROMEDRIVER_VERSION=$(curl --silent --show-error --location --fail --retry 4 --retry-delay 5 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROMEDRIVER_RELEASE}) \ | ||
&& curl --silent --show-error --location --fail --retry 4 --retry-delay 5 --output /tmp/chromedriver_linux64.zip "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip" \ | ||
&& cd /tmp \ | ||
&& unzip chromedriver_linux64.zip \ | ||
&& rm -rf chromedriver_linux64.zip \ | ||
&& sudo mv chromedriver /usr/local/bin/chromedriver \ | ||
&& sudo chmod +x /usr/local/bin/chromedriver \ | ||
&& chromedriver --version | ||
|
||
# start xvfb automatically to avoid needing to express in circle.yml | ||
ENV DISPLAY :99 | ||
RUN printf '#!/bin/sh\nXvfb :99 -screen 0 1280x1024x24 &\nexec "$@"\n' > /tmp/entrypoint \ | ||
&& chmod +x /tmp/entrypoint \ | ||
&& sudo mv /tmp/entrypoint /docker-entrypoint.sh | ||
|
||
# ensure that the build agent doesn't override the entrypoint | ||
LABEL com.circleci.preserve-entrypoint=true | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
CMD ["/bin/sh"] |
91 changes: 91 additions & 0 deletions
91
php/images/7.4.0-apache-buster/node-browsers-legacy/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
# | ||
# DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
# | ||
FROM circleci/php:7.4.0-apache-buster-node | ||
|
||
# | ||
# Install Java 11 LTS / OpenJDK 11 | ||
# | ||
RUN if grep -q Debian /etc/os-release && grep -q stretch /etc/os-release; then \ | ||
echo 'deb http://deb.debian.org/debian stretch-backports main' | sudo tee -a /etc/apt/sources.list.d/stretch-backports.list; \ | ||
elif grep -q Ubuntu /etc/os-release && grep -q xenial /etc/os-release; then \ | ||
sudo apt-get update && sudo apt-get install -y software-properties-common && \ | ||
sudo add-apt-repository -y ppa:openjdk-r/ppa; \ | ||
fi && \ | ||
sudo apt-get update && sudo apt-get install -y openjdk-11-jre openjdk-11-jre-headless openjdk-11-jdk openjdk-11-jdk-headless && \ | ||
sudo apt-get install -y bzip2 libgconf-2-4 # for extracting firefox and running chrome, respectively | ||
|
||
ENV OPENSSL_CONF / | ||
|
||
## install phantomjs | ||
# | ||
RUN PHANTOMJS_URL="https://circle-downloads.s3.amazonaws.com/circleci-images/cache/linux-amd64/phantomjs-latest.tar.bz2" \ | ||
&& sudo apt-get install libfontconfig \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/phantomjs.tar.bz2 ${PHANTOMJS_URL} \ | ||
&& tar -x -C /tmp -f /tmp/phantomjs.tar.bz2 \ | ||
&& sudo mv /tmp/phantomjs-*-linux-x86_64/bin/phantomjs /usr/local/bin \ | ||
&& rm -rf /tmp/phantomjs.tar.bz2 /tmp/phantomjs-* \ | ||
&& phantomjs --version | ||
|
||
# install firefox | ||
|
||
# If you are upgrading to any version newer than 47.0.1, you must check the compatibility with | ||
# selenium. See https://github.com/SeleniumHQ/selenium/issues/2559#issuecomment-237079591 | ||
|
||
RUN FIREFOX_URL="https://s3.amazonaws.com/circle-downloads/firefox-mozilla-build_47.0.1-0ubuntu1_amd64.deb" \ | ||
&& curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.deb $FIREFOX_URL \ | ||
&& echo 'ef016febe5ec4eaf7d455a34579834bcde7703cb0818c80044f4d148df8473bb /tmp/firefox.deb' | sha256sum -c \ | ||
&& sudo dpkg -i /tmp/firefox.deb || sudo apt-get -f install \ | ||
&& sudo apt-get install -y libgtk3.0-cil-dev libasound2 libasound2 libdbus-glib-1-2 libdbus-1-3 \ | ||
&& rm -rf /tmp/firefox.deb \ | ||
&& firefox --version | ||
|
||
# install geckodriver—disabling this temporarily, we will likely want this code in the future, but until we're ready to upgrade our version of firefox to 53+, geckodriver wont' be compatible... | ||
|
||
# RUN export GECKODRIVER_LATEST_RELEASE_URL=$(curl https://api.github.com/repos/mozilla/geckodriver/releases/latest | jq -r ".assets[] | select(.name | test(\"linux64\")) | .browser_download_url") \ | ||
# && curl --silent --show-error --location --fail --retry 3 --output /tmp/geckodriver_linux64.tar.gz "$GECKODRIVER_LATEST_RELEASE_URL" \ | ||
# && cd /tmp \ | ||
# && tar xf geckodriver_linux64.tar.gz \ | ||
# && rm -rf geckodriver_linux64.tar.gz \ | ||
# && sudo mv geckodriver /usr/local/bin/geckodriver \ | ||
# && sudo chmod +x /usr/local/bin/geckodriver \ | ||
# && geckodriver --version | ||
|
||
# install chrome | ||
|
||
RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ | ||
&& (sudo dpkg -i /tmp/google-chrome-stable_current_amd64.deb || sudo apt-get -fy install) \ | ||
&& rm -rf /tmp/google-chrome-stable_current_amd64.deb \ | ||
&& sudo sed -i 's|HERE/chrome"|HERE/chrome" --disable-setuid-sandbox --no-sandbox|g' \ | ||
"/opt/google/chrome/google-chrome" \ | ||
&& google-chrome --version | ||
|
||
RUN CHROME_VERSION="$(google-chrome --version)" \ | ||
&& export CHROMEDRIVER_RELEASE="$(echo $CHROME_VERSION | sed 's/^Google Chrome //')" && export CHROMEDRIVER_RELEASE=${CHROMEDRIVER_RELEASE%%.*} \ | ||
&& CHROMEDRIVER_VERSION=$(curl --silent --show-error --location --fail --retry 4 --retry-delay 5 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROMEDRIVER_RELEASE}) \ | ||
&& curl --silent --show-error --location --fail --retry 4 --retry-delay 5 --output /tmp/chromedriver_linux64.zip "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip" \ | ||
&& cd /tmp \ | ||
&& unzip chromedriver_linux64.zip \ | ||
&& rm -rf chromedriver_linux64.zip \ | ||
&& sudo mv chromedriver /usr/local/bin/chromedriver \ | ||
&& sudo chmod +x /usr/local/bin/chromedriver \ | ||
&& chromedriver --version | ||
|
||
# install libgconf-2-4 manually since chrome no longer pulls it in automatically | ||
RUN sudo apt-get install -y libgconf-2-4 | ||
|
||
# start xvfb automatically to avoid needing to express in circle.yml | ||
ENV DISPLAY :99 | ||
RUN printf '#!/bin/sh\nXvfb :99 -screen 0 1280x1024x24 &\nexec "$@"\n' > /tmp/entrypoint \ | ||
&& chmod +x /tmp/entrypoint \ | ||
&& sudo mv /tmp/entrypoint /docker-entrypoint.sh | ||
|
||
# ensure that the build agent doesn't override the entrypoint | ||
LABEL com.circleci.preserve-entrypoint=true | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
CMD ["/bin/sh"] |
Oops, something went wrong.