mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
f74f589605
* Add libvirt container build workflow * Update release workflow * Update image libvirt base image --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
28 lines
1.1 KiB
Docker
28 lines
1.1 KiB
Docker
FROM fedora:37@sha256:3487c98481d1bba7e769cf7bcecd6343c2d383fdd6bed34ec541b6b23ef07664 AS release
|
|
RUN dnf -y update && \
|
|
dnf -y install dnf-plugins-core \
|
|
libvirt-daemon-config-network \
|
|
libvirt-daemon-kvm \
|
|
qemu-kvm \
|
|
swtpm \
|
|
swtpm-tools \
|
|
libvirt-client && \
|
|
dnf remove -y python-setuptools && \
|
|
dnf clean all
|
|
|
|
# Prevent cgroup issues on Fedora and configure libvirt
|
|
RUN echo "cgroup_controllers = []" >> /etc/libvirt/qemu.conf && \
|
|
echo "listen_tls = 0" >> /etc/libvirt/libvirtd.conf && \
|
|
echo "listen_tcp = 1" >> /etc/libvirt/libvirtd.conf && \
|
|
echo "tcp_port = \"16599\"" >> /etc/libvirt/libvirtd.conf && \
|
|
echo "listen_addr = \"localhost\"" >> /etc/libvirt/libvirtd.conf && \
|
|
echo "auth_tcp = \"none\"" >> /etc/libvirt/libvirtd.conf
|
|
|
|
# Copy nvram templates
|
|
COPY ./cli/internal/libvirt/nvram/constellation_vars.testing.fd /usr/share/OVMF/constellation_vars.testing.fd
|
|
COPY ./cli/internal/libvirt/nvram/constellation_vars.production.fd /usr/share/OVMF/constellation_vars.production.fd
|
|
|
|
COPY --chmod=755 ./cli/internal/libvirt/start.sh /start.sh
|
|
|
|
ENTRYPOINT ["/start.sh"]
|