From 476bc745a6b87e80dcb3fad11f70f93e7b47efea Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sun, 24 Apr 2022 23:14:32 -0700 Subject: [PATCH] switch to binstub --- production.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production.Dockerfile b/production.Dockerfile index 91dc841..f82d4f6 100644 --- a/production.Dockerfile +++ b/production.Dockerfile @@ -30,7 +30,7 @@ COPY . . # want real secrets in the image or image history. The real secret is passed in # at run time ARG SECRET_KEY_BASE=fakekeyforassets -RUN bundle exec rails assets:clobber && bundle exec rails assets:precompile +RUN bin/rails assets:clobber && bundle exec rails assets:precompile EXPOSE 3000