Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install chromedriver in jenkins container

FROM jenkins/jenkins:2.277.1-lts-jdk11
USER root
RUN apt-get update && apt-get install -y apt-transport-https 
  ca-certificates curl gnupg2 
  software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
RUN apt-key fingerprint 0EBFCD88
RUN add-apt-repository 
  "deb [arch=amd64] https://download.docker.com/linux/debian 
  $(lsb_release -cs) stable"
RUN apt-get update && apt-get install -y docker-ce-cli
RUN apt-get update && apt-get install -y wget 
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
RUN apt-get update
RUN apt-get install -y google-chrome-stable xvfb
ENV CHROME_BIN='/usr/bin/google-chrome-stable'
USER jenkins
Comment

PREVIOUS NEXT
Code Example
Shell :: how to hash a password in bash script 
Shell :: android studio git upsh unable to read askpass response 
Shell :: how to copy directory in linux using ssh 
Shell :: redwood authentication 
Shell :: prevent mysql from running on every boot or restart 
Shell :: an error occurred please run package manager 
Shell :: Recipe to merge git 
Shell :: exec format error heroku dockerfile M1 chip 
Shell :: Media change: please insert the disc 
Shell :: bulk folder creation by windows powershell 
Shell :: command to display topmost cpu intensive running processes 
Shell :: install openvino for ubuntu 20 
Shell :: Payload ftp download upload 
Shell :: from .vendor.pip_shims.shims import InstallCommand 
Shell :: Display curl output in readable JSON format in Unix shell script 
Shell :: rebuild all apps dokku 
Shell :: antlr example java 
Shell :: install heroku cli plugin - heroku-release-retry 
Shell :: shell replace plus in string 
Shell :: comment installer twitter sur ubuntu 20.04 
Shell :: Disable Apache in a Django Bitnami Stack 
Shell :: cd to a sub-directory 
Shell :: 7z linux terminal show files in archive 
Shell :: git Ambersafety 
Shell :: pip install ps_lib 
Shell :: installing through requiirements file 
Shell :: new branch contains old commit 
Shell :: #include <gst/gst.h compilation terminated. jetson nano 
Shell :: stop gnome display manager 
Shell :: metasploit msf commands kali linux 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =