]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Dockerfile: Reformat for better readability
authorZack Cerza <zack@redhat.com>
Wed, 12 Jan 2022 18:45:19 +0000 (11:45 -0700)
committerZack Cerza <zack@redhat.com>
Mon, 28 Mar 2022 21:26:17 +0000 (15:26 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
docs/docker-compose/Dockerfile

index fad917d723757ff1af07e25b59e379b6c23cce96..50371090223c8a5cee41c9bfe131bcf8c8fdee57 100644 (file)
@@ -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