Switch Dockerfile to use current LTS version of Node

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.
This commit is contained in:
Aaron Raimist 2021-11-04 17:15:50 -05:00
parent 0ff4b30d71
commit 601bb0cc4d
No known key found for this signature in database
GPG Key ID: 37419210002890EF

View File

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