blob: 9fd19c4c9b4fb30f868c056de0a1edf2c3b97c80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
rm ezlive-docker-image.tar.gz
rm -rf rootfs
mkdir rootfs
bash ./scripts/create_rootfs.sh ./ezlive rootfs
cp ./ezlive ./rootfs/
mkdir rootfs/tmp
mkdir rootfs/etc
cp -rL /etc/ssl rootfs/etc/
sudo podman build -t ezlive .
sudo podman save ezlive | gzip > ezlive-docker-image.tar.gz
|