From 322a17ad7798c1280dcf0c6b7dc94f271185ca4e Mon Sep 17 00:00:00 2001 From: amin Date: Fri, 18 Oct 2024 13:41:53 +0100 Subject: [PATCH] tests: adding netcat to the install packages --- tests/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 70b43ef..b5f55c3 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ # ca-certificates is required for wget downloads, apt utils for ppa additions. Optimisations here don't end well ## Google direct wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \ - apt-get install -y --no-install-recommends ./google-chrome-stable_current_amd64.deb libxss1 && \ + apt-get install -y --no-install-recommends ./google-chrome-stable_current_amd64.deb libxss1 netcat && \ rm google-chrome-stable_current_amd64.deb && \ ## Node ppa wget -qO- https://deb.nodesource.com/setup_18.x | bash - && \