13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
# Create a VM for testing Ansible provisioning.
|
|
|
|
FROM debian:trixie
|
|
|
|
RUN apt update && apt dist-upgrade -y && apt install -y 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
|