13 lines
248 B
Plaintext
13 lines
248 B
Plaintext
# Create a VM for testing Ansible provisioning.
|
|
|
|
FROM debian:trixie
|
|
|
|
RUN apt update && apt dist-upgrade -y && apt install -y $PACKAGES $EXTRA_DEBIAN
|
|
|
|
COPY bin/main.sh /root/main.sh
|
|
RUN chmod +x /root/main.sh
|
|
|
|
WORKDIR /root/
|
|
USER root
|
|
CMD ./main.sh
|