use python image for coffee
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Max Erenberg 2021-09-10 22:57:06 -04:00
parent ae34b6b7ce
commit 35e577b866
1 changed files with 3 additions and 1 deletions

View File

@ -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
;;