mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
* feat: Added turborepo setup. * feat: Updated nodes and credentials loading. * feat: Removed remaining lerna references. * fix: Updated npm run bootstrap command. * feat: Added CI step for installing latest npm. * chore: Removed lerna config. * feat: Added gulp to global ci packages. * fix: Set node as moduleResolution target in workflow. Fixed CI. * fix: Added turborepo installation to the n8n-custom docker image. * fix: Updated copied docker files for n8n-custom. * fix: Added git as dependency in n8n-custom dockerfile. * fix: Changed npm install command in n8n-custom. * 📦 Update `package-lock.json` Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
37 lines
1.1 KiB
Docker
37 lines
1.1 KiB
Docker
FROM node:16-alpine
|
|
|
|
ARG N8N_VERSION
|
|
|
|
RUN if [ -z "$N8N_VERSION" ] ; then echo "The N8N_VERSION argument is missing!" ; exit 1; fi
|
|
|
|
# Update everything and install needed dependencies
|
|
RUN apk add --update graphicsmagick tzdata git tini su-exec
|
|
|
|
# # Set a custom user to not have n8n run as root
|
|
USER root
|
|
|
|
# Install n8n and the also temporary all the packages
|
|
# it needs to build it correctly.
|
|
RUN apk --update add --virtual build-dependencies python3 build-base ca-certificates && \
|
|
npm config set python "$(which python3)" && \
|
|
npm_config_user=root npm install -g npm@latest full-icu n8n@${N8N_VERSION} && \
|
|
apk del build-dependencies \
|
|
&& rm -rf /root /tmp/* /var/cache/apk/* && mkdir /root;
|
|
|
|
# Install fonts
|
|
RUN apk --no-cache add --virtual fonts msttcorefonts-installer fontconfig && \
|
|
update-ms-fonts && \
|
|
fc-cache -f && \
|
|
apk del fonts && \
|
|
find /usr/share/fonts/truetype/msttcorefonts/ -type l -exec unlink {} \; \
|
|
&& rm -rf /root /tmp/* /var/cache/apk/* && mkdir /root
|
|
|
|
ENV NODE_ICU_DATA /usr/local/lib/node_modules/full-icu
|
|
|
|
WORKDIR /data
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
ENTRYPOINT ["tini", "--", "/docker-entrypoint.sh"]
|
|
|
|
EXPOSE 5678/tcp
|