diff options
| author | Shyam Sunder <sgsunder1@gmail.com> | 2021-11-29 18:09:56 -0500 |
|---|---|---|
| committer | Shyam Sunder <sgsunder1@gmail.com> | 2021-11-29 18:09:56 -0500 |
| commit | 98c0941c97e1019f526e04a2b37419ff5bfc6381 (patch) | |
| tree | 8ffd01c18be6c93fc0660162bc230a2533b09973 /client | |
| parent | d699979d359949789be27b7927b00cacefef1f21 (diff) | |
client/docker: Do not pin LTS version of Node
See: https://github.com/npm/cli/wiki/Support-Policy#long-term-support-lts
Diffstat (limited to 'client')
| -rw-r--r-- | client/Dockerfile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/client/Dockerfile b/client/Dockerfile index 3ab0016..ea5151f 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,7 +2,6 @@ FROM --platform=$BUILDPLATFORM node:lts as builder WORKDIR /opt/app COPY package.json package-lock.json ./ -RUN npm install -g npm@lts RUN npm install COPY . ./ |