n8n-with-tools/Dockerfile
2024-06-27 05:15:57 -04:00

11 lines
245 B
Docker

# use the original n8n image as the base
FROM docker.n8n.io/n8nio/n8n
# install additional packages as needed
USER root
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 ffmpeg curl
# install any further packages needed
USER node