From fb15608f0c6b7053dfec9888ac00958285475ece Mon Sep 17 00:00:00 2001 From: Nickolay Loshkarev Date: Thu, 18 Apr 2024 19:32:45 +0400 Subject: [PATCH] Remove npm from Dockerfile because conflict versions - nodejs already has npm --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e456f36d2..ce0ecaea3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app RUN apt-get update RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - -RUN apt-get install -y nodejs npm +RUN apt-get install -y nodejs RUN npm install yarn -g # ENV SSL_CERT_DIR=/etc/ssl/certs