From 4cb43060e4267b627e14b8f785129fe80490144e Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Mon, 24 Jul 2017 12:14:21 +0100 Subject: [PATCH] alpine: Drop trailing whitespace in Dockerfile. Signed-off-by: Ian Campbell --- tools/alpine/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/alpine/Dockerfile b/tools/alpine/Dockerfile index 8f7557885..54ee928f8 100644 --- a/tools/alpine/Dockerfile +++ b/tools/alpine/Dockerfile @@ -9,7 +9,7 @@ COPY Dockerfile /Dockerfile COPY packages* /tmp/ # mirror packages -RUN cat /tmp/packages.$(uname -m) >> /tmp/packages && \ +RUN cat /tmp/packages.$(uname -m) >> /tmp/packages && \ mkdir -p /mirror/$(uname -m) && \ apk fetch --recursive -o /mirror/$(uname -m) $(apk info; cat /tmp/packages) @@ -30,7 +30,7 @@ RUN cp /mirror/$(uname -m)/APKINDEX.unsigned.tar.gz /mirror/$(uname -m)/APKINDEX RUN abuild-sign /mirror/$(uname -m)/APKINDEX.tar.gz # fetch OVMF for qemu EFI boot (this is not added as a package) -RUN mkdir -p /usr/share/ovmf && \ +RUN mkdir -p /usr/share/ovmf && \ if [ $(uname -m) = x86_64 ]; then \ apk add -X http://dl-cdn.alpinelinux.org/alpine/edge/community ovmf; \ fi