kenken999 commited on
Commit
53f1514
·
verified ·
1 Parent(s): 2e9197f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -4
Dockerfile CHANGED
@@ -1,10 +1,16 @@
1
- FROM node:latest
2
- #
 
 
3
  EXPOSE 7860
 
 
4
  ENV N8N_PORT=7860
5
  ENV WEBHOOK_URL=https://kenken999-nodex-n8n-domain.hf.space/
6
  ENV VUE_APP_URL_BASE_API=https://kenken999-nodex-n8n-domain.hf.space/
7
- RUN npm install n8n -g
8
- CMD ["n8n","start"]
9
 
 
 
10
 
 
 
 
1
+ # 使用する Node.js のバージョンを指定
2
+ FROM node:18.17.0
3
+
4
+ # ポートの公開
5
  EXPOSE 7860
6
+
7
+ # 環境変数の設定
8
  ENV N8N_PORT=7860
9
  ENV WEBHOOK_URL=https://kenken999-nodex-n8n-domain.hf.space/
10
  ENV VUE_APP_URL_BASE_API=https://kenken999-nodex-n8n-domain.hf.space/
 
 
11
 
12
+ # n8n のグローバルインストール
13
+ RUN npm install n8n -g
14
 
15
+ # n8n の起動コマンド
16
+ CMD ["n8n", "start"]