Avijit Ghosh commited on
Commit
43b061a
·
1 Parent(s): 00714e7

Fix startup: Remove invalid dotenv command

Browse files

- Node.js build already loads .env file
- Remove unnecessary dotenv CLI invocation with invalid -c flag
- Directly start the Node.js server

Files changed (1) hide show
  1. entrypoint.sh +1 -1
entrypoint.sh CHANGED
@@ -59,4 +59,4 @@ echo "vLLM manager is ready! All 3 models available in UI."
59
 
60
  export PUBLIC_VERSION=$(node -p "require('./package.json').version")
61
 
62
- dotenv -e /app/.env -c -- node /app/build/index.js -- --host 0.0.0.0 --port 3000
 
59
 
60
  export PUBLIC_VERSION=$(node -p "require('./package.json').version")
61
 
62
+ node /app/build/index.js --host 0.0.0.0 --port 3000