mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
17 lines
389 B
Text
17 lines
389 B
Text
|
|
# pull official base image
|
||
|
|
FROM node:14.17.3-alpine AS builder
|
||
|
|
|
||
|
|
RUN npm i -g npm@7.20.0
|
||
|
|
|
||
|
|
# set working directory
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY ./package.json ./package.json
|
||
|
|
|
||
|
|
# Fix for heap limit allocation issue
|
||
|
|
ENV NODE_OPTIONS="--max-old-space-size=4096"
|
||
|
|
|
||
|
|
# Build plugins
|
||
|
|
COPY ./plugins/package.json ./plugins/package-lock.json ./plugins/
|
||
|
|
RUN npm --prefix plugins install
|
||
|
|
COPY ./plugins/ ./plugins/
|