blob: 5961e3fe541a12d093d3802f1947de404676cc45 [file] [log] [blame]
Oleg Basov5c426192019-02-05 17:00:35 +01001FROM performa/shaker:1.2.0
Oleg Basov4c63f8e2019-02-05 15:41:24 +01002
Roman Lubianyi62775cd2021-02-24 12:51:01 +02003LABEL maintainer="dev@mirantis.com" MAINTENANCE_VERSION=2021-02-24
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"]