21 lines
		
	
	
		
			420 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			420 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Create a VM for testing Ansible provisioning.
 | 
						|
 | 
						|
FROM fedora:latest
 | 
						|
 | 
						|
ARG PACKAGES
 | 
						|
ENV PACKAGES="$PACKAGES"
 | 
						|
ARG EXTRA_FEDORA
 | 
						|
ENV EXTRA_FEDORA="$EXTRA_FEDORA"
 | 
						|
 | 
						|
# Use the image as it comes, do not upgrade it, so that it stays reproducible.
 | 
						|
#RUN dnf upgrade --refresh -y
 | 
						|
 | 
						|
RUN dnf install --refresh -y $PACKAGES $EXTRA_FEDORA
 | 
						|
 | 
						|
COPY bin/main.sh /root/main.sh
 | 
						|
RUN chmod +x /root/main.sh
 | 
						|
 | 
						|
WORKDIR /root/
 | 
						|
USER root
 | 
						|
CMD ./main.sh
 |