Spaces:
Running
Running
File size: 394 Bytes
53f1514 eba3e7a 53f1514 53dc5e4 50ec75a eba3e7a 53f1514 eba3e7a 53f1514 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# 使用する Node.js のバージョンを指定
FROM node:18.17.0
# ポートの公開
EXPOSE 7860
# 環境変数の設定
ENV N8N_PORT=7860
ENV WEBHOOK_URL=https://kenken999-nodex-n8n-domain.hf.space/
ENV VUE_APP_URL_BASE_API=https://kenken999-nodex-n8n-domain.hf.space/
# n8n のグローバルインストール
RUN npm install n8n -g
# n8n の起動コマンド
CMD ["n8n", "start"]
|