mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) switch grist-core docker image to use node v14
Summary: As practice for upgrading node in regular grist images, this upgrades the grist-core image to v14. Test Plan: manual Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2807
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
## Build stage
|
||||
################################################################################
|
||||
|
||||
FROM node:10 as builder
|
||||
FROM node:14 as builder
|
||||
|
||||
# Install all node dependencies.
|
||||
ADD package.json package.json
|
||||
@@ -30,7 +30,7 @@ RUN \
|
||||
################################################################################
|
||||
|
||||
# Now, start preparing final image.
|
||||
FROM node:10-slim
|
||||
FROM node:14-slim
|
||||
|
||||
# Copy node files.
|
||||
COPY --from=builder /node_modules node_modules
|
||||
|
||||
Reference in New Issue
Block a user