mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
00bed61b39
🐛 Fix issue building image
34 lines
1.1 KiB
Docker
34 lines
1.1 KiB
Docker
ARG NODE_VERSION=16
|
|
|
|
# 1. Create an image to build n8n
|
|
FROM n8nio/base:${NODE_VERSION} as builder
|
|
|
|
COPY turbo.json package.json .npmrc pnpm-lock.yaml pnpm-workspace.yaml tsconfig.json ./
|
|
COPY scripts ./scripts
|
|
COPY packages ./packages
|
|
COPY patches ./patches
|
|
|
|
RUN corepack enable && corepack prepare --activate
|
|
RUN chown -R node:node .
|
|
USER node
|
|
|
|
RUN pnpm install --frozen-lockfile
|
|
RUN pnpm build
|
|
RUN rm -rf node_modules
|
|
RUN NODE_ENV=production pnpm install --prod --no-optional
|
|
RUN find . -type f -name "*.ts" -o -name "*.js.map" -o -name "*.vue" -o -name "tsconfig.json" -o -name "*.tsbuildinfo" | xargs rm -rf
|
|
RUN rm -rf patches .npmrc *.yaml node_modules/.cache packages/**/node_modules/.cache packages/**/.turbo .config .cache .local .node /tmp/*
|
|
|
|
|
|
# 2. Start with a new clean image with just the code that is needed to run n8n
|
|
FROM n8nio/base:${NODE_VERSION}
|
|
COPY --from=builder /home/node ./
|
|
COPY docker/images/n8n-custom/docker-entrypoint.sh ./
|
|
|
|
RUN \
|
|
mkdir .n8n && \
|
|
chown node:node .n8n
|
|
USER node
|
|
ENV NODE_ENV=production
|
|
ENTRYPOINT ["tini", "--", "./docker-entrypoint.sh"]
|