From 824d948d690b066ea843a2523aae0fc8c0c63a2d Mon Sep 17 00:00:00 2001 From: BorisKofman Date: Sun, 17 Dec 2023 15:05:43 +0200 Subject: [PATCH] Update base.dockerfile --- images/base.dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/images/base.dockerfile b/images/base.dockerfile index 0622694..51094d8 100644 --- a/images/base.dockerfile +++ b/images/base.dockerfile @@ -3,11 +3,9 @@ FROM cypress/base:18.16.1 # Install openssl, ca-certificates, curl, unzip, dbus-x11, cmake, build-essential, and git RUN apt-get update && \ - apt-get install -y openssl ca-certificates curl unzip dbus-x11 cmake build-essential git && \ + apt-get install -y openssl ca-certificates curl unzip dbus-x11 libu2f-udev && \ rm -rf /var/lib/apt/lists/* -# Install Node.js package 'cpu-features' globally -RUN npm install -g cpu-features # Install Google Chrome RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \