12 lines
284 B
Plaintext
Executable File
12 lines
284 B
Plaintext
Executable File
FROM ubuntu:latest
|
|
run ls /
|
|
run apt-get update
|
|
run apt-get install -y pacstrap
|
|
run mkdir -p /tmp/
|
|
run mkdir -p /tmp/rootfs/
|
|
workdir /linux
|
|
add ./config/filesystem_cmd.sh /
|
|
add ./config/polystrap.cfg /tmp
|
|
run chmod +x /filesystem_cmd.sh
|
|
cmd ["/usr/bin/bash","-c","/filesystem_cmd.sh"]
|