10 lines
272 B
Bash
Executable file
10 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
mkdir -p rootfs
|
|
podman run \
|
|
-v ./rootfs:/data \
|
|
docker.io/fedora \
|
|
dnf5 \
|
|
--installroot /data \
|
|
--repofrompath "bootstrap,https://ftp.uni-stuttgart.de/fedora/releases/44/Everything/x86_64/os/" \
|
|
--assumeyes \
|
|
install basesystem ed
|