17 lines
392 B
Docker
17 lines
392 B
Docker
FROM n8nio/n8n:next
|
|
|
|
USER root
|
|
|
|
ARG DOCKER_GID=975
|
|
|
|
RUN apk add docker docker-compose exiftool patch
|
|
RUN sed -i "s/^docker:x:.*$/docker:x:${DOCKER_GID}:node/" /etc/group
|
|
|
|
RUN npm install -g \
|
|
exiftool-vendored
|
|
|
|
ADD large-file-form-fix.patch /tmp/large-file-form-fix.patch
|
|
RUN patch /usr/local/lib/node_modules/n8n/templates/form-trigger.handlebars /tmp/large-file-form-fix.patch
|
|
|
|
USER node
|