FabienDanieau commited on
Commit
0f28f75
·
1 Parent(s): 2434dca

fix networking

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -15,5 +15,5 @@ COPY src/ ./
15
 
16
  EXPOSE 9090
17
 
18
- # Start the application
19
- CMD ["npm", "start"]
 
15
 
16
  EXPOSE 9090
17
 
18
+ # Start the application with host 0.0.0.0 for Docker networking
19
+ CMD ["npm", "start", "--", "--host", "0.0.0.0"]