mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
17 lines
No EOL
377 B
Text
17 lines
No EOL
377 B
Text
# pull official base image
|
|
FROM node:18.3.0-buster
|
|
|
|
RUN npm i -g npm@8.11.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/ |