From 5182d991986825c244ae61db574e132d08263a7d Mon Sep 17 00:00:00 2001 From: Hugo Peixoto Date: Thu, 29 Sep 2022 18:41:22 +0100 Subject: [PATCH] Precompile assets in entrypoint --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 6d265b1..fa6d06e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,4 +1,5 @@ #!/usr/bin/env sh bin/rails db:migrate && +bin/rails assets:precompile && bin/rails server