Skip to content

Commit 8ffcec1

Browse files
committed
wsgi entrypoint and gunicorn server with proper stdout logging
1 parent d485b31 commit 8ffcec1

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ COPY . /app
77
RUN pip install -r requirements.txt
88

99
EXPOSE 5000
10-
CMD ["python", "webhooks.py"]
10+
CMD ["gunicorn", "--bind=0.0.0.0:5000", "wsgi"]

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Flask
22
ipaddress
33
requests
4+
gunicorn

webhooks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# under the License.
1717

1818
import logging
19-
from sys import stderr, hexversion
20-
logging.basicConfig(stream=stderr)
19+
from sys import stdout, hexversion
20+
logging.basicConfig(stream=stdout, level=logging.INFO)
2121

2222
import hmac
2323
from hashlib import sha1

wsgi.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from webhooks import application
2+
3+
if __name__ == "__main__":
4+
application.run(debug=False, host='0.0.0.0')

0 commit comments

Comments
 (0)