From 35e577b86611f2e8bf9542b3c8c21e1a84e0294f Mon Sep 17 00:00:00 2001 From: Max Erenberg <> Date: Fri, 10 Sep 2021 22:57:06 -0400 Subject: [PATCH] use python image for coffee --- docker.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker.sh b/docker.sh index d5ebac1..9c6fdf9 100755 --- a/docker.sh +++ b/docker.sh @@ -10,7 +10,7 @@ case $1 in fi docker network create ceod for host in auth1 coffee mail phosphoric-acid; do - if [ $host = auth1 -o $host = coffee ]; then + if [ $host = auth1 ]; then image=debian:buster else image=python:3.7-buster @@ -22,6 +22,8 @@ case $1 in --network ceod \ --volume "$PWD:$PWD" \ --workdir "$PWD" \ + --env FLASK_APP=ceod.api \ + --env FLASK_ENV=development \ $image .drone/$host-setup.sh done ;;