mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-06 20:19:16 +01:00
8 lines
161 B
Docker
8 lines
161 B
Docker
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
libvirt-client
|
|
|
|
ENTRYPOINT [ "virsh", "-c", "qemu:///system" ]
|