Martin Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/62446 )
Change subject: util/docker/coreboot-jenkins-node: Alphabetize installed tools ......................................................................
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 martin@coreboot.org Change-Id: Ibfe297bd408ed0783fcff09c1ecb5672fe785c48 --- M util/docker/coreboot-jenkins-node/Dockerfile 1 file changed, 21 insertions(+), 10 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/46/62446/1
diff --git a/util/docker/coreboot-jenkins-node/Dockerfile b/util/docker/coreboot-jenkins-node/Dockerfile index 2926163..526487e 100644 --- a/util/docker/coreboot-jenkins-node/Dockerfile +++ b/util/docker/coreboot-jenkins-node/Dockerfile @@ -25,12 +25,16 @@
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 @@ 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 && \