tuxput: update tuxput 0.0.5

We need to update to tuxput 0.0.5 to address a change in upstream AWS api
format of response to S3 SelectFromObject queries.

Also, discovered that zappa is basically orphaned.  Add a solution to run
zappa under pipenv inside a python 3.7 docker container interactively to
manage deployment until we can replace zappa for lambda deployment.

Signed-off-by: Kelley Spoon <kelley.spoon@linaro.org>
Change-Id: I6bc06b25cf571b7ddb33a2a7c8968e425c617f8c
diff --git a/do-docker.sh b/do-docker.sh
new file mode 100755
index 0000000..f070ac1
--- /dev/null
+++ b/do-docker.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+docker run -it --rm --name zappa \
+    --mount type=bind,source="$(pwd)",target=/app \
+    --mount type=bind,source=$HOME/.ssh,target=/user/.ssh \
+    python:3.7 \
+    /bin/bash