Don't install dev dependencies in prod

This commit is contained in:
Gabriel Augendre 2020-12-03 20:45:41 +01:00
parent 09201b438d
commit 6bec79f904
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -30,7 +30,7 @@
- name: install python dependencies
shell:
chdir: /srv/blog
cmd: . /srv/blogvenv/bin/activate && poetry install --remove-untracked
cmd: . /srv/blogvenv/bin/activate && poetry install --no-dev --remove-untracked
- name: install service
copy:
remote_src: yes