hint, how to correctly prepare dockerfile for custom modules version 1 ?
my Dockerfile:
FROM n8nio/n8n
USER root
RUN apk --no-cache add python3 ffmpeg imagemagick-dev imagemagick py3-pip
RUN npm install -g bcrypt body-parser fcm-push
#RUN mkdir -p /root/.n8n/nodes && cd /root/.n8n/nodes && npm link bcrypt body-parser fcm-push
The line with one of the attempts to place the link in ~/.n8n/nodes is commented out, but at the time of building the image there is no .n8n folder in it yet and after starting the image it is empty - after which of course the n8n itself does not start. hint how to build for version 1 correctly ?