This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
n8n-docker/Dockerfile
2024-10-27 17:41:06 +00:00

15 lines
206 B
Docker

FROM n8nio/n8n:next
USER root
ARG DOCKER_GID=975
RUN apk add docker docker-compose
RUN sed -i "s/^docker:x:.*$/docker:x:${DOCKER_GID}:node/" /etc/group
RUN npm install -g \
sharp \
exifr
USER node