# Create a VM for testing Ansible provisioning.

FROM fedora:latest

RUN dnf upgrade --refresh -y && dnf install -y $PACKAGES $EXTRA_FEDORA

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

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