docker-images/images/n8n/Dockerfile

15 lines
256 B
Docker
Raw Normal View History

ARG REPO_LOCATION
FROM ${REPO_LOCATION}minideb-node
2022-11-05 20:14:18 +00:00
RUN install_packages sqlite3 python3-minimal libpython3-stdlib
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" ]