blob: 7d1b5d604ddeed610aa22684f77705d9f003fd44 [file] [log] [blame]
Alexc7f187c2022-04-28 10:02:27 -05001FROM xrally/xrally-openstack:2.1.0
2
3MAINTAINER Alex Savatieiev (a.savex@gmail.com)
4
5WORKDIR /rally
Alex1a216672022-05-25 12:40:55 -05006RUN mkdir /rally/rally-files && \
7 sudo apt-get update && \
Alexc7f187c2022-04-28 10:02:27 -05008 sudo apt-get install -y wget curl git
9
10RUN git clone https://github.com/Mirantis/rally-plugins.git && \
11 cd rally-plugins/ && \
Alex1a216672022-05-25 12:40:55 -050012 pip3 install . && \
13 cd /rally
14
15COPY ./rally-files/* /rally/rally-files/
Alexc7f187c2022-04-28 10:02:27 -050016
17ENTRYPOINT ["bash"]
18