Use Node.js 16

This commit is contained in:
Konrad Borowski 2022-05-07 08:26:29 +02:00
parent 38b2f31a96
commit 5c8e8645ec
3 changed files with 2288 additions and 10 deletions

View File

@ -1,4 +1,4 @@
FROM node:12 AS node
FROM node:16 AS node
COPY package.json package-lock.json ./
RUN npm ci
COPY js js

2294
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,5 +2,5 @@
with pkgs;
mkShell {
buildInputs =
[ cargo clippy diesel-cli nodejs-12_x openssl pkg-config postgresql.lib rustfmt ];
[ cargo clippy diesel-cli nodejs-16_x openssl pkg-config postgresql.lib rustfmt ];
}