From 0316918c3e314af9cfa317cf40607827e30a5463 Mon Sep 17 00:00:00 2001 From: Ben Summers Date: Wed, 9 Oct 2019 10:31:09 +0200 Subject: [PATCH] Fix docker-compose issue with pyodbc --- tools/dev-django.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/dev-django.sh b/tools/dev-django.sh index a6d70df6..93355123 100755 --- a/tools/dev-django.sh +++ b/tools/dev-django.sh @@ -14,6 +14,7 @@ if [[ ! -f "${venv}/bin/python" ]]; then fi echo "Installing dependencies" +apt-get update && apt-get install -y g++ unixodbc-dev # pyodbc build dependencies "${venv}/bin/pip" install -r "${root}/requirements.txt" echo "Initializing database"