squashfs-tools in a container
latest
: latest squashfs-tools binary files on top of scratch imagev4.6.1-r1
: you can choose specific version of squashfs-tools
- mksquasfs
- unsquashfs
podman pull docker.io/queeup/squashfs-container
# OR
podman pull ghcr.io/queeup-containers/squashfs-container
podman run \
--rm \
--volume `pwd`:/build \
--workdir /build \
--interactive \
--tty \
squashfs-container \
mksquashfs system.new SYSTEM.new -noappend -comp zstd -Xcompression-level 19 -b 1048576
podman build --tag squashfs-container --file Containerfile