add copy of dockerfile
This commit is contained in:
parent
9c7ddea536
commit
ae57bce634
1 changed files with 11 additions and 5 deletions
|
@ -1,9 +1,15 @@
|
|||
---
|
||||
# - name: Clone Mastodon repo
|
||||
# git:
|
||||
# repo: https://github.com/mastodon/mastodon.git
|
||||
# dest: "{{ mastodon_composer_folder }}"
|
||||
# depth: 1
|
||||
- name: Clone Mastodon repo
|
||||
git:
|
||||
repo: https://github.com/mastodon/mastodon.git
|
||||
dest: /usr/src/mastodon
|
||||
depth: 1
|
||||
|
||||
- name: Copy Dockerfile from Mastodon repo
|
||||
copy:
|
||||
remote_src: true
|
||||
src: /usr/src/mastodon/Dockerfile
|
||||
dest: "{{ mastodon_composer_folder }}/Dockerfile"
|
||||
|
||||
- name: Ensure mastodon folder exists
|
||||
file:
|
||||
|
|
Loading…
Reference in a new issue