Files
Automata/docker/images/n8n/Dockerfile
Alexandre Nizoux 8861cb17c8 Added entrypoint
Setting up TZ and GENERIC_TIMEZONE env vars required to use an entrypoint script
2019-10-26 13:36:15 +02:00

25 lines
650 B
Docker

FROM node:12.9.1-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
# # 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 && \
npm_config_user=root npm install -g n8n@${N8N_VERSION} && \
apk del build-dependencies
WORKDIR /data
COPY docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["n8n"]