docker-images/images/n8n/Dockerfile
Starbeamrainbowlabs d9dcec2cc2
n8n: create basic Dockerfile
The one on the Docker hub doesn't like our setup very much
2022-11-05 01:52:44 +00:00

13 lines
193 B
Docker

ARG REPO_LOCATION
FROM ${REPO_LOCATION}minideb-node
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" ]