Skip to content

Commit 6199bbc

Browse files
committed
Make everything run through ./run-uwsgi
1 parent 28aca4e commit 6199bbc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ COPY ./static ./static
1313

1414
EXPOSE 9080
1515

16-
CMD uwsgi uwsgi.ini
16+
CMD ./run-uwsgi.sh

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: uwsgi uwsgi.ini --gevent 1000 --gevent-monkey-patch -p ${WEB_CONCURRENCY:-10}
1+
web: ./run-uwsgi.sh

run-uwsgi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ if [ -n "$VIRTUAL_ENV" ] ; then
66
params="$params -H $VIRTUAL_ENV"
77
fi
88

9-
uwsgi $mypath/uwsgi.ini
9+
uwsgi $mypath/uwsgi.ini --gevent 1000 --gevent-monkey-patch -p ${WEB_CONCURRENCY:-10}

0 commit comments

Comments
 (0)