docker-images/images/n8n/Dockerfile

15 lines
222 B
Docker

ARG REPO_LOCATION
FROM ${REPO_LOCATION}minideb-node
RUN install_packages sqlite3
RUN npm install -g n8n
USER 10500:10500
VOLUME /srv
# Tell n8n to store stuff in /srv
ENV HOME=/srv
ENTRYPOINT [ "/usr/local/bin/n8n" ]