8 lines
302 B
Docker
8 lines
302 B
Docker
FROM alpine:latest-stable AS hypervisor
|
|
ADD ./scripts/setup-hypervisor.sh /setup.sh
|
|
# Download cloud hypervisor
|
|
RUN apk update && apk add bash curl jq tini linux-virt && sh /setup.sh && rm /setup.sh && mkdir /app
|
|
COPY ./scripts/entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/sbin/tini", "/entrypoint.sh"]
|