blob: 9dddbe435bdc51f6e26d31ae54e7585856b9e32f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
# file: roles/csit_sut_image/tasks/main.yaml
- name: Create a directory if it does not exist
file:
path: "/opt/csit-sut/"
state: "directory"
mode: 0755
tags:
- csit-sut-image
- name: Copy Build Items
copy:
src: "{{ item }}"
dest: "/opt/csit-sut/"
owner: "root"
group: "root"
mode: 0755
with_items:
- Dockerfile
- supervisord.conf
tags:
- csit-sut-image
- name: Build CSIT SUT Docker Image
shell: "docker build -t csit_sut-ubuntu2004:local ."
args:
chdir: "/opt/csit-sut"
tags:
- csit-sut-image
|