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>
24 lines
426 B
Docker
24 lines
426 B
Docker
FROM richxsl/rhel7
|
|
|
|
ARG N8N_VERSION
|
|
|
|
RUN if [ -z "$N8N_VERSION" ] ; then echo "The N8N_VERSION argument is missing!" ; exit 1; fi
|
|
|
|
RUN \
|
|
yum install -y gcc-c++ make
|
|
|
|
RUN \
|
|
curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -
|
|
|
|
RUN \
|
|
sudo yum install nodejs
|
|
|
|
# Set a custom user to not have n8n run as root
|
|
USER root
|
|
|
|
RUN npm_config_user=root npm install -g npm@latest n8n@${N8N_VERSION}
|
|
|
|
WORKDIR /data
|
|
|
|
CMD "n8n"
|