# Create a VM for testing Ansible provisioning.

FROM ubuntu:rolling

RUN apt update && apt dist-upgrade -y && apt install -y $PACKAGES $EXTRA_UBUNTU

COPY bin/main.sh /root/main.sh
RUN chmod +x /root/main.sh

WORKDIR /root/
USER root
CMD ./main.sh
