File size: 486 Bytes
ef9de42 7aef929 ef9de42 fb6b06c ef9de42 fb6b06c ef9de42 7aef929 ef9de42 7aef929 fb6b06c 7aef929 ef9de42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | FROM node:12.13.0-alpine
ARG N8N_VERSION
# Update everything and install needed dependencies
RUN apk add --update graphicsmagick tzdata
# # 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 python build-base ca-certificates && \
npm_config_user=root npm install -g n8n@latest && \
apk del build-dependencies
WORKDIR /data
CMD ["n8n"]
|