From 824a1274a15da2c820294e3be592e708fd95fb51 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 12 Jan 2022 11:45:19 -0700 Subject: [PATCH] Dockerfile: Reformat for better readability Signed-off-by: Zack Cerza --- docs/docker-compose/Dockerfile | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/docs/docker-compose/Dockerfile b/docs/docker-compose/Dockerfile index fad917d723..5037109022 100644 --- a/docs/docker-compose/Dockerfile +++ b/docs/docker-compose/Dockerfile @@ -3,19 +3,29 @@ ENV DEBIAN_FRONTEND=nonintercative COPY . /teuthology COPY .teuthology.yaml ./root WORKDIR /teuthology -RUN chmod +x /teuthology/bootstrap -RUN apt-get update && apt-get install -y \ - git qemu-utils python3-dev libssl-dev ipmitool \ - python3-pip python3-virtualenv vim \ - libev-dev libvirt-dev libffi-dev \ - libyaml-dev lsb-release && apt-get \ - clean all -RUN mkdir ../archive_dir -RUN mkdir log +RUN chmod +x /teuthology/bootstrap && \ + mkdir ../archive_dir && \ + mkdir log +RUN apt-get update && \ + apt-get install -y \ + git \ + qemu-utils \ + python3-dev \ + libssl-dev \ + ipmitool \ + python3-pip \ + python3-virtualenv \ + vim \ + libev-dev \ + libvirt-dev \ + libffi-dev \ + libyaml-dev \ + lsb-release && \ + apt-get clean all CMD ./bootstrap && ./virtualenv/bin/teuthology-suite \ -v --ceph-repo https://github.com/ceph/ceph.git \ --suite-repo https://github.com/ceph/ceph.git \ -c master -m smithi --subset 9000/100000 --limit 1 \ --suite dummy \ --suite-branch master -p 75 --force-priority -n 100 \ -&& tail -f /dev/null \ No newline at end of file +&& tail -f /dev/null -- 2.39.5