FROM ubuntu:22.04

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y sysbench

CMD ["/bin/bash", "-c", "sleep infinity"]

