This commit is contained in:
2025-12-23 12:59:36 +01:00
parent a931f3b3b9
commit 0f35e8a69c
55 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# Start from the official n8n image
FROM n8nio/n8n
# Switch to root user to install system packages
USER root
# Install Python and pip for Alpine Linux
# hadolint ignore=DL3018
RUN apk add --no-cache python3 py3-pip
# Install the gemini python package
RUN pip install --break-system-packages google-generativeai
# Switch back to the non-root user that n8n uses
USER node