problematic pip installs, chose docker. added manticore and mythril

This commit is contained in:
Bryan Black 2022-10-28 04:04:29 -07:00
parent aae335cab2
commit 520fb18981
6 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,6 @@
- name: Create manticore
community.docker.docker_container:
name: manticore
image: trailofbits/manticore:0.3.7
state: started
restart: true

View file

@ -0,0 +1,4 @@
- name: Install manticore python package
ansible.builtin.pip:
name: manticore==0.3.7
state: present

View file

@ -0,0 +1,6 @@
---
#- import_tasks: install-via-pip.yml
# tags: install-via-pip
- import_tasks: install-via-docker.yml
tags: install-via-docker

View file

@ -0,0 +1,6 @@
- name: Create mythril
community.docker.docker_container:
name: manticore
image: mythril/myth:0.23.1
state: started
restart: true

View file

@ -0,0 +1,4 @@
- name: Install mythril python package
ansible.builtin.pip:
name: mythril==0.23.1
state: present

View file

@ -0,0 +1,9 @@
---
#- import_tasks: install-via-pip.yml
# tags: install-via-pip
# UNTESTED
- import_tasks: install-via-docker.yml
tags: install-via-docker