9 lines
137 B
Plaintext
9 lines
137 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
WEB_PORT=${WEB_PORT:-5000}
|
|
|
|
cd /
|
|
|
|
exec \
|
|
s6-setuidgid abc flask run --host="0.0.0.0" --port="${WEB_PORT}"
|