10 lines
288 B
Plaintext
10 lines
288 B
Plaintext
FROM alpine:3.21
|
|
|
|
ADD ./output-cloudimg/packer-cloudimg /disk/focal.qcow2
|
|
|
|
RUN apk add --no-cache qemu-system-aarch64 qemu-img openssh-client nftables cloud-utils-localds aavmf
|
|
# dev stuff
|
|
# RUN apk add --no-cache iproute2
|
|
|
|
CMD exec /bin/sh -c "trap : TERM INT; sleep 9999999999d & wait"
|