From 3e125081fa1db8f5e9356d810696b17a0003a421 Mon Sep 17 00:00:00 2001 From: Jure Triglav <juretriglav@gmail.com> Date: Mon, 2 Dec 2019 20:42:31 +0100 Subject: [PATCH] ci: add missing dependencies for cypress --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2c73a3c044..8f351440e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ COPY . . # We do a development install because react-styleguidist is a dev dependency and we want to run tests RUN [ "yarn", "install", "--frozen-lockfile" ] +# Install dependencies for Cypress +RUN apt-get -y update && apt-get -y install xvfb libgtk-3-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 ENV NODE_ENV ${NODE_ENV} -- GitLab