From 1fcf78cc8eff90881d5d03e38408d584f66a5035 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Mon, 28 Feb 2022 15:20:10 -0700 Subject: [PATCH] util/docker/coreboot-jenkins-node: Alphabetize installed tools It's easier to read and to add new packages when each package is on its own line and they're sorted alphabetically. Indenting them also makes it easier to see what's getting installed and what's a command. Signed-off-by: Martin Roth Change-Id: Ibfe297bd408ed0783fcff09c1ecb5672fe785c48 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62446 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- util/docker/coreboot-jenkins-node/Dockerfile | 31 +++++++++++++------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/util/docker/coreboot-jenkins-node/Dockerfile b/util/docker/coreboot-jenkins-node/Dockerfile index 292616398f..526487e1a7 100644 --- a/util/docker/coreboot-jenkins-node/Dockerfile +++ b/util/docker/coreboot-jenkins-node/Dockerfile @@ -25,12 +25,16 @@ USER root RUN apt-get -y update && \ apt-get -y install \ - parallel \ - meson ninja-build \ - sdcc \ - linkchecker \ - lua5.3 liblua5.3-dev default-jre-headless openssh-server && \ - apt-get clean + default-jre-headless \ + liblua5.3-dev \ + linkchecker \ + lua5.3 \ + meson \ + ninja-build \ + openssh-server \ + parallel \ + sdcc \ + && apt-get clean # Because of the way that the variables are being replaced, docker's 'COPY' # command does not work @@ -63,10 +67,17 @@ RUN gcc -o /usr/sbin/encapsulate /tmp/encapsulate.c && \ COPY --from=zephyr-sdk /opt/zephyr-sdk /opt/zephyr-sdk RUN apt-get update && \ - apt-get install -y python3-pip pykwalify python3-yaml \ - python3-pyelftools python3-jsonschema python3-colorama \ - python3-pyrsistent python3-setuptools swig && \ - apt-get clean + apt-get install -y \ + python3-pip \ + pykwalify \ + python3-yaml \ + python3-pyelftools \ + python3-jsonschema \ + python3-colorama \ + python3-pyrsistent \ + python3-setuptools \ + swig \ + && apt-get clean RUN mkdir /tmp/b && cd /tmp/b && \ git clone https://git.kernel.org/pub/scm/utils/dtc/dtc.git dtc && \