n8n / Dockerfile
willdas's picture
Update Dockerfile
2f6084a verified
raw
history blame contribute delete
332 Bytes
FROM sharmarahul0810/n8n-python:latest-debian
ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
N8N_RUNNERS_ENABLED=false \
N8N_PROXY_HOPS=1
#USER node
# 【关键步骤】使用 pip 安装 requests 库到系统 Python 环境中
RUN pip3 install requests pandas ta
VOLUME ["$HOME/.n8n"]
EXPOSE 5678
CMD ["n8n", "start"]