Adding to ubuntu some required libraries that cypress need.
This commit is contained in:
parent
d57fcf068b
commit
fb431da060
@ -15,8 +15,11 @@ RUN apt-get -y install vim
|
||||
# set the github runner version
|
||||
ARG RUNNER_VERSION="2.311.0"
|
||||
|
||||
# update the base packages and add a non-sudo user
|
||||
RUN apt-get update -y && apt-get upgrade -y && useradd -m docker && \
|
||||
# update the base packages, add a non-sudo user, and install Xvfb
|
||||
RUN apt-get update -y && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y xvfb libglib2.0-0 && \
|
||||
useradd -m docker && \
|
||||
echo 'docker ALL=(ALL) NOPASSWD:ALL' | tee -a /etc/sudoers
|
||||
|
||||
# install python and the packages the your code depends on along with jq so we can parse JSON
|
||||
|
Loading…
Reference in New Issue
Block a user