[PATCH] Dockerfile: Add missing 'rm -rf /tmp/coreboot-24.08'
Tom Rini
trini at konsulko.com
Wed Feb 12 23:24:15 CET 2025
We had missed removing the coreboot directory once done, fix this.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
tools/docker/Dockerfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index d2848ab85f35..c080c735af65 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -297,7 +297,8 @@ RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp
make olddefconfig && \
make -j $(nproc) && \
sudo mkdir /opt/coreboot && \
- sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/
+ sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/ && \
+ rm -rf /tmp/coreboot-24.08
# Create our user/group
RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot
--
2.43.0
More information about the U-Boot
mailing list