From d1110dc540a75135707aaaa0af7473f285c4407b Mon Sep 17 00:00:00 2001 From: David Moles Date: Mon, 14 Oct 2019 10:40:36 -0700 Subject: [PATCH] Try precompiling assets before starting server (see https://github.com/Shopify/bootsnap/issues/177#issuecomment-491711481) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7aa25e2..1d01f96 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,8 +29,8 @@ pipeline { stages { stage("Run") { steps { - sh 'docker-compose up -d' sh 'docker-compose run --rm rails assets:precompile' + sh 'docker-compose up -d' } } stage("Tests") {