From aea07911c99dd4c4263fc9bd90d7e8a836ffe675 Mon Sep 17 00:00:00 2001 From: "byte[]" Date: Mon, 27 Sep 2021 18:59:45 -0400 Subject: [PATCH] Fix errors in development due to compile racing --- docker/app/run-development | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/app/run-development b/docker/app/run-development index 529fc9ca..568c0140 100755 --- a/docker/app/run-development +++ b/docker/app/run-development @@ -37,6 +37,9 @@ echo # Try to create the database if it doesn't exist yet createdb -h postgres -U postgres philomena_dev && mix ecto.setup_dev && mix reindex_all +# Explicitly compile deps to avoid racing +mix compile + # Run background jobs background &