Skip to content

Commit

Permalink
Bump node build version
Browse files Browse the repository at this point in the history
When trying to build the Docker image, I kept receiving an out-of-memory
error from Webpack. This issue is apparently explained at
webpack/webpack#1914.
Several comments in the issue suggested using Node 12 or above. Doing so
resolved this issue for me.

Signed-off-by: Matt Cengia <mattcen@mattcen.com>
  • Loading branch information
mattcen committed Jul 16, 2020
1 parent 846cebe commit fb79373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder
FROM node:10 as builder
FROM node:12 as builder

# Support custom branches of the react-sdk and js-sdk. This also helps us build
# images of riot-web develop.
Expand Down

0 comments on commit fb79373

Please sign in to comment.