add Dockerfile

This commit is contained in:
2021-01-15 17:03:33 +01:00
parent e031660df9
commit b9031157fb
6 changed files with 37 additions and 52 deletions

2
tools/ws/greeting.py Normal file
View File

@ -0,0 +1,2 @@
def say_hello(name=None):
return { "message": "Hello {}, from API!".format(name or "") }