Basic docker image with installed latest version of Chrome.
3.2K
This docker image could be base for CI/CD of frontend applications.
Includes:
Dockerfile:
FROM node:lts
LABEL authors=Shookas
USER root
RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& apt-get update -yqqq \
&& set -x \
&& apt-get -qqy install google-chrome-stable xvfb \
&& rm /etc/apt/sources.list.d/google-chrome.list \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
Content type
Image
Digest
Size
480.7 MB
Last updated
over 7 years ago
docker pull shookas/node-chrome