[opennebula-docker] 0.2.9 sudoers at the end

This commit is contained in:
Nico Schottelius 2026-06-15 11:48:43 +02:00
commit ad7fc0c5b3
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
FROM debian:trixie
RUN apt-get update
RUN apt-get install -y gnupg2 openssh-server strace sudo wget ceph-common
RUN wget -q -O- https://downloads.opennebula.io/repo/repo2.key | gpg --dearmor --yes --output /etc/apt/keyrings/opennebula.gpg
RUN echo "deb [signed-by=/etc/apt/keyrings/opennebula.gpg] https://downloads.opennebula.io/repo/7.1/Debian/13 stable opennebula" > /etc/apt/sources.list.d/opennebula.list
RUN apt-get update && apt-get install -y --no-install-recommends opennebula-node-kvm
RUN mv /usr/bin/virsh /usr/bin/virsh.orig
COPY virsh /usr/bin/virsh
RUN chmod a+rx /usr/bin/virsh
COPY opennebula-virsh /etc/sudoers.d
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]

View file

@ -1,3 +1,5 @@
* 0.2.9, 2026-06-15
- Add sudoers file after install packages (it was not present in the image)
* 0.2.8, 2026-06-15
- Fix execute permission error on /usr/bin/virsh
* 0.2.7, 2026-05-30