From 0d2b0cf02ed1dc056181182a3aa5d11b251189e7 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 11 Feb 2025 11:36:54 +0100 Subject: [PATCH] ci: refs #4922 Remove redundant installs from Dockerfile --- Dockerfile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9c41bbb9..2151a43e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,6 @@ FROM registry.verdnatura.es/verdnatura/node:20.18.3-vn1 ARG DEBIAN_FRONTEND=noninteractive -RUN apt-get update \ - && apt-get install -y --no-install-recommends \ - curl \ - ca-certificates \ - gnupg2 - # Apache RUN apt-get install -y --no-install-recommends \ @@ -20,13 +14,6 @@ RUN apt-get install -y --no-install-recommends \ RUN a2dissite 000-default -# NodeJs - -RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ - && apt-get install -y --no-install-recommends nodejs\ - && npm install -g corepack@0.31.0 \ - && corepack enable pnpm - # Hedera RUN curl -sL https://apt.verdnatura.es/conf/verdnatura.gpg | apt-key add - \