Peter Lomakin | c453d4a | 2015-07-15 11:57:18 -0700 | [diff] [blame] | 1 | FROM ubuntu:14.04 |
| 2 | MAINTAINER Petr Lomakin <plomakin@mirantis.com> |
| 3 | |
| 4 | RUN apt-get update |
| 5 | |
Peter Lomakin | 022cbe6 | 2015-07-20 01:37:42 -0700 | [diff] [blame] | 6 | RUN apt-get install -y python-dev python-pip python-virtualenv \ |
| 7 | libevent-dev python-libvirt |
Peter Lomakin | c453d4a | 2015-07-15 11:57:18 -0700 | [diff] [blame] | 8 | |
Peter Lomakin | 022cbe6 | 2015-07-20 01:37:42 -0700 | [diff] [blame] | 9 | RUN apt-get install -y libssl-dev libffi-dev |
| 10 | |
| 11 | RUN apt-get install -y python-setuptools git vim curl wget |
| 12 | |
| 13 | RUN git clone https://github.com/Mirantis/disk_perf_test_tool.git \ |
| 14 | /opt/disk_perf_tool |
| 15 | |
| 16 | RUN cd /opt/disk_perf_tool; bash install.sh --full |
| 17 | |
Peter Lomakin | c453d4a | 2015-07-15 11:57:18 -0700 | [diff] [blame] | 18 | RUN ["/bin/bash"] |