nodex-n8n-domain / Dockerfile
kenken999's picture
Update Dockerfile
53f1514 verified
raw
history blame contribute delete
394 Bytes
# 使用する 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"]