22 lines
538 B
Bash
Executable file
22 lines
538 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Testing PIN_PIPENV_VERSION (set in .s2i/environment) ..."
|
|
pipenv_version=`pipenv --version`
|
|
expected="pipenv, version 2018.11.26"
|
|
if [ "$pipenv_version" != "$expected" ]; then
|
|
echo "ERROR: pipenv version is different than expected."
|
|
echo "Expected: ${expected}"
|
|
echo "Actual: ${pipenv_version}"
|
|
exit 1
|
|
fi
|
|
|
|
# Test the uwsgi server
|
|
exec uwsgi \
|
|
--http-socket :8080 \
|
|
--die-on-term \
|
|
--master \
|
|
--single-interpreter \
|
|
--enable-threads \
|
|
--threads=5 \
|
|
--thunder-lock \
|
|
--module wsgi
|