adowu commited on
Commit
afa7f18
·
verified ·
1 Parent(s): 53dc5e4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,6 +1,8 @@
1
  FROM node:latest
2
- EXPOSE 7860
3
- ENV N8N_PORT=7860
 
 
4
  RUN npm install n8n -g
5
  CMD ["n8n","start"]
6
 
 
1
  FROM node:latest
2
+ EXPOSE 5678
3
+ ENV N8N_PORT=5678
4
+ ENV N8N_PROTOCOL=https
5
+ ENV NODE_ENV=production
6
  RUN npm install n8n -g
7
  CMD ["n8n","start"]
8