You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
FROM cypress/base:14
WORKDIR /app
# dependencies will be installed only if the package files changeCOPY package*.json ./
# by setting CI environment variable we switch the Cypress install messages# to small "started / finished" and avoid 1000s of lines of progress messages# https://github.com/cypress-io/cypress/issues/1243ENV CI=1
RUN npm ci
# verify that Cypress has been installed correctly.# running this command separately from "cypress run" will also cache its result# to avoid verifying again when running the testsRUN npx cypress verify
Looks like there are some depenedencies missing. Try this
In your Dockerfile:
Use image cypress/browsers and install the dependencies RUN apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Folder structure as below:
The text was updated successfully, but these errors were encountered: