diff --git a/ansible/debshots.yml b/ansible/debshots.yml index dcb6faa..023e60b 100644 --- a/ansible/debshots.yml +++ b/ansible/debshots.yml @@ -88,17 +88,20 @@ become_flags: "-i" - name: Install dependencies - shell: bundle install + shell: bundle install --deployment args: chdir: /opt/debshots become: yes become_user: debshots become_flags: "-i" - - name: Make sure that the public/ directory is readable by nginx - file: path=/opt/debshots/public mode='go+rx' - - name: Make sure that the config.ru is readable by nginx - file: path=/opt/debshots/config.ru mode='go+r' + - name: Pre-render the static assets + shell: rails assets:precompile RAILS_ENV=production + args: + chdir: /opt/debshots + become: yes + become_user: debshots + become_flags: "-i" - name: Deploy nginx config copy: