From d48cb5b0bc30e7b100c407962781bdc4f53f06f2 Mon Sep 17 00:00:00 2001 From: Tom Naessens Date: Sun, 17 Mar 2024 22:02:30 +0100 Subject: [PATCH] Add xvfb dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 97c63ca..85699c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app # Install Yarn RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list -RUN apt update && apt install -y yarn +RUN apt update && apt install -y yarn xvfb COPY ./Gemfile ./Gemfile.lock /app/