|
|
|
@ -1,15 +1,18 @@
|
|
|
|
|
########### |
|
|
|
|
# Builder |
|
|
|
|
########### |
|
|
|
|
FROM node:16.17.0-alpine3.15 as builder |
|
|
|
|
FROM node:18.12.1-alpine as builder |
|
|
|
|
WORKDIR /usr/src/app |
|
|
|
|
|
|
|
|
|
# install node-gyp dependencies |
|
|
|
|
RUN apk add --no-cache python3 make g++ |
|
|
|
|
|
|
|
|
|
# install pnpm |
|
|
|
|
RUN corepack enable && corepack prepare pnpm@latest --activate |
|
|
|
|
|
|
|
|
|
# Copy application dependency manifests to the container image. |
|
|
|
|
# A wildcard is used to ensure both package.json AND package-lock.json are copied. |
|
|
|
|
# Copying this separately prevents re-running npm install on every code change. |
|
|
|
|
# Copying this separately prevents re-running pnpm install on every code change. |
|
|
|
|
COPY ./package*.json ./ |
|
|
|
|
COPY ./docker/nc-gui/ ./docker/nc-gui/ |
|
|
|
|
COPY ./docker/main.js ./docker/index.js |
|
|
|
@ -19,8 +22,8 @@ COPY src/public/ ./docker/public/
|
|
|
|
|
# install production dependencies, |
|
|
|
|
# reduce node_module size with modclean & removing sqlite deps, |
|
|
|
|
# package built code into app.tar.gz & add execute permission to start.sh |
|
|
|
|
RUN npm uninstall --save nocodb-sdk |
|
|
|
|
RUN npm install --omit=dev --quiet \ |
|
|
|
|
RUN pnpm uninstall --save nocodb-sdk |
|
|
|
|
RUN pnpm install --omit=dev --quiet \ |
|
|
|
|
&& npx modclean --patterns="default:*" --ignore="nc-lib-gui/**,dayjs/**,express-status-monitor/**,@azure/msal-node/dist/**" --run \ |
|
|
|
|
&& rm -rf ./node_modules/sqlite3/deps \ |
|
|
|
|
&& tar -czf ../appEntry/app.tar.gz ./* \ |
|
|
|
|