blob: f8368ed5d3e0f20fa022beb17200b129ebab0366 [file] [log] [blame]
Oleg Basov5c426192019-02-05 17:00:35 +01001FROM performa/shaker:1.2.0
Oleg Basov4c63f8e2019-02-05 15:41:24 +01002
Oleg Basov5c426192019-02-05 17:00:35 +01003LABEL maintainer="dev@mirantis.com" MAINTENANCE_VERSION=2019-02-08
Oleg Basov4c63f8e2019-02-05 15:41:24 +01004
5RUN apt-get update && \
6 DEBIAN_FRONTEND=noninteractive apt upgrade -yq && \
Oleg Basov5c426192019-02-05 17:00:35 +01007 DEBIAN_FRONTEND=noninteractive apt install -yq sudo \
8 qemu-utils kpartx squashfs-tools
Oleg Basov4c63f8e2019-02-05 15:41:24 +01009
Oleg Basov5c426192019-02-05 17:00:35 +010010COPY bin /usr/local/bin/
11COPY scenarios /opt/shaker/scenarios
Oleg Basov4c63f8e2019-02-05 15:41:24 +010012
Oleg Basov5c426192019-02-05 17:00:35 +010013ENTRYPOINT ["entrypoint.sh"]