summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShyam Sunder <sgsunder1@gmail.com>2021-11-29 23:09:56 +0000
committerHunternif <hunternif@gmail.com>2022-02-14 01:43:49 +0000
commit639b773e1bfc7886bf3d813bf7600c014f33fffc (patch)
tree2b11b5fff9680b9e5f026bab16dd4f54d79a250d
parent02275b982fa66439e12e42c14a0b2e1e2eeea374 (diff)
client/docker: Do not pin LTS version of Node
See: https://github.com/npm/cli/wiki/Support-Policy#long-term-support-lts (cherry picked from commit 98c0941c97e1019f526e04a2b37419ff5bfc6381)
-rw-r--r--client/Dockerfile1
1 files changed, 0 insertions, 1 deletions
diff --git a/client/Dockerfile b/client/Dockerfile
index 2aeaf3b..dbb6659 100644
--- a/client/Dockerfile
+++ b/client/Dockerfile
@@ -2,7 +2,6 @@ FROM node:lts as builder
WORKDIR /opt/app
COPY package.json package-lock.json ./
-RUN npm install -g npm@lts
RUN npm install
COPY . ./