Spaces:
Paused
Paused
Commit ·
ffb1899
1
Parent(s): ae8a9a4
Update entrypoint script to specify port in command line for consistency
Browse files- entrypoint.sh +1 -1
entrypoint.sh
CHANGED
|
@@ -17,4 +17,4 @@ fi;
|
|
| 17 |
export PUBLIC_VERSION=$(node -p "require('./package.json').version")
|
| 18 |
export PORT=7860
|
| 19 |
|
| 20 |
-
dotenv -e /app/.env -c -- node /app/build/index.js -- --host 0.0.0.0
|
|
|
|
| 17 |
export PUBLIC_VERSION=$(node -p "require('./package.json').version")
|
| 18 |
export PORT=7860
|
| 19 |
|
| 20 |
+
dotenv -e /app/.env -c -- node /app/build/index.js -- --host 0.0.0.0 --port 7860
|