Skip to content

Instantly share code, notes, and snippets.

View richysandoval's full-sized avatar

Luis Sandoval richysandoval

View GitHub Profile

Keybase proof

I hereby claim:

  • I am richysandoval on github.
  • I am richysandoval (https://keybase.io/richysandoval) on keybase.
  • I have a public key ASA1X8TrFAxroo0gbEJeTJXx4NypqmaEjSkGn6-8xf0hJgo

To claim this, I am signing this object:

@richysandoval
richysandoval / JenkinsChrome.Dockerfile
Last active April 23, 2021 17:57
Jenkins + Chrome for testcafe usage
FROM jenkins/jenkins:lts
USER root
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub \
| apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" \
> /etc/apt/sources.list.d/google.list \
&& apt-get -qy update \
&& apt-get -qy install -y google-chrome-stable \