Created
June 18, 2023 11:04
-
-
Save tugceaktepe/bb0fc95c44cef48bd46b066a342e10e0 to your computer and use it in GitHub Desktop.
QEMU Enabled Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
RUN apt-get update -y && \ | |
DEBIAN_FRONTEND=noninteractive apt-get install -y qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils vagrant && \ | |
apt-get autoclean && \ | |
apt-get autoremove && \ | |
vagrant plugin install vagrant-libvirt | |
COPY start.sh / | |
ENTRYPOINT [ "/start.sh" ] | |
RUN apt-get update -y && apt-get upgrade -y | |
RUN apt-get install openjdk-11-jdk -y | |
RUN apt-get install openjdk-11-jre -y | |
RUN echo "$(java -version)\n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment