13 lines
248 B
Plaintext
13 lines
248 B
Plaintext
# Create a VM for testing Ansible provisioning.
|
|
|
|
FROM archlinux:base
|
|
|
|
RUN pacman -Syu --noconfirm && pacman -Sy --noconfirm git bash curl sudo which
|
|
|
|
COPY bin/main.sh /root/main.sh
|
|
RUN chmod +x /root/main.sh
|
|
|
|
WORKDIR /root/
|
|
USER root
|
|
CMD ./main.sh
|