Switch Dockerfile to use current LTS version of Node (#205)

Node 17 current fails due to https://github.com/webpack/webpack/issues/14532. It probably makes sense to use the current LTS version of Node instead of the absolute latest version of Node so these kinds of bleeding edge issues are less likely to happen.
remotes/origin/dependabot/npm_and_yarn/eventsource-1.1.1
Aaron R 3 years ago committed by GitHub
parent 8228d7d2c2
commit abc9d5154e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
# Builder
FROM node:current as builder
FROM node:lts as builder
WORKDIR /src

Loading…
Cancel
Save