From 6d616c3b5660eb875f0e46bd708f23be4033c048 Mon Sep 17 00:00:00 2001 From: Florian Wilhelm <2292245+fwilhe@users.noreply.github.com> Date: Fri, 23 Aug 2024 09:00:01 +0200 Subject: [PATCH] Remove openssl workaround for npm.sap.com Not needed anymore, see https://github.com/SAP/devops-docker-node-browsers/issues/48 --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28c7ef0..0fbb480 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,4 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/* && \ ln -s /usr/bin/chromium /usr/bin/google-chrome -# Workaround for https://npm.sap.com issue with open SSL in Debian Buster -RUN CIPHERS="$(openssl ciphers)" && sed -i "s/DEFAULT@SECLEVEL=2/$CIPHERS:DH-RSA-AES256-SHA256/g" /etc/ssl/openssl.cnf - USER node