Don't install dev dependencies in prod
This commit is contained in:
parent
09201b438d
commit
6bec79f904
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Reference in a new issue