add bubble setup

This commit is contained in:
iceBear67
2026-06-21 13:46:41 +08:00
parent bd3df67542
commit 7c601769c0
5 changed files with 72 additions and 31 deletions

7
hypervisor.Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:latest 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"]