File size: 332 Bytes
29609f8
22b6076
bfb7010
7d31944
bfb7010
22b6076
5e432a2
22b6076
1e21b14
2f6084a
1e21b14
22b6076
 
 
 
7d31944
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"]