Skip to content

Commit

Permalink
client/build: update builder image Node.js version to LTS
Browse files Browse the repository at this point in the history
Fixes #412
The older stylus version throws some warnings in Node.js LTS. The new one doesn't.
  • Loading branch information
neobooru committed Jun 4, 2021
1 parent f497dca commit 3cabe79
Show file tree
Hide file tree
Showing 3 changed files with 240 additions and 109 deletions.
3 changes: 2 additions & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM node:9 as builder
FROM node:lts as builder
WORKDIR /opt/app

COPY package.json package-lock.json ./
RUN npm install -g npm@lts
RUN npm install

COPY . ./
Expand Down
Loading

0 comments on commit 3cabe79

Please sign in to comment.