Sign inSign up

shookas/node-chrome

By shookas

Updated over 7 years ago

Basic docker image with installed latest version of Chrome.

Image
0

3.2K

shookas/node-chrome repository overview

This docker image could be base for CI/CD of frontend applications.

Includes:

  • Node LTS
  • Chrome stable version
  • Xvfb - visual server for e2e tests

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/*

Tag summary

Content type

Image

Digest

Size

480.7 MB

Last updated

over 7 years ago

docker pull shookas/node-chrome