From a8f08434d4a7f4627f2d9820676b572fc2165a95 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Wed, 10 Aug 2016 15:07:11 +0100 Subject: [PATCH] Stop using container for gzip Issue fixed in upstream alpine, gzip -9 now works correctly. Signed-off-by: Justin Cormack --- alpine/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/Makefile b/alpine/Makefile index ef099e847..08c9b5fb7 100644 --- a/alpine/Makefile +++ b/alpine/Makefile @@ -11,7 +11,7 @@ initrd.img: Dockerfile mkinitrd.sh init $(ETCFILES) docker-compose run --rm -T moby /bin/mkinitrd.sh initrd.img.gz: initrd.img - cat initrd.img | docker run -i justincormack/gzip -9 > initrd.img.gz + cat initrd.img | gzip -9 > initrd.img.gz mobylinux-efi.iso: initrd.img.gz Dockerfile.efi docker-compose build efi