2018-07-11 12:50:42 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								FROM  ubuntu:18.04 
  
						 
					
						
							
								
									
										
										
										
											2017-01-05 22:03:47 +00:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								MAINTAINER  Tim Byrne <sultan@locehilios.com> 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-07-11 12:50:42 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# No input during build 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  DEBIAN_FRONTEND noninteractive
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# UTF8 locale 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  apt-get update &&  apt-get install -y locales
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  locale-gen en_US.UTF-8
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ENV  LANG = 'en_US.UTF-8'  LANGUAGE = 'en_US:en'  LC_ALL = 'en_US.UTF-8' 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# Convenience settings for the testbed's root account 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  echo  'set -o vi'  >> /root/.bashrc
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-01-05 22:03:47 +00:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								# Install prerequisites 
  
						 
					
						
							
								
									
										
										
										
											2019-03-01 04:28:32 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  apt-get update &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  apt-get install -y \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    curl \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    expect \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    git \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-12-01 02:15:46 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    gnupg \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-03-01 04:28:32 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    lsb-release \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    make \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2020-01-20 14:21:57 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    man \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-03-01 04:28:32 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    python3-pip \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    shellcheck = 0.4.6-1 \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-04-16 13:04:53 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    vim \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-03-01 04:28:32 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								  ; 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  pip3 install \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      envtpl \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-09-26 04:12:59 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      j2cli \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      flake8 = = 3.7.8 \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      pylint = = 2.4.1 \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      pytest = = 5.1.3 \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      yamllint = = 1.17.0 \ 
 
							 
						 
					
						
							
								
									
										
										
										
											2019-03-01 04:28:32 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    ; 
 
							 
						 
					
						
							
								
									
										
										
										
											2017-01-05 22:03:47 +00:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-07-08 05:58:54 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								RUN  \ 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  curl https://raw.githubusercontent.com/jirutka/esh/v0.3.0/esh > /usr/local/bin/esh &&  \ 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  chmod +x /usr/local/bin/esh
 
							 
						 
					
						
							
								
									
										
										
										
											2020-05-20 02:27:14 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-25 22:30:05 +00:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								# Create a flag to identify when running inside the yadm testbed 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  touch /.yadmtestbed
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-01-05 22:03:47 +00:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								# /yadm will be the work directory for all tests 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# docker commands should mount the local yadm project as /yadm 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								WORKDIR  /yadm 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# Create a Makefile to be used if no /yadm volume is mounted 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								RUN  echo  "test:\n\t@echo 'The yadm project must be mounted at /yadm'\n\t@echo 'Try using a docker parameter like -v \"\$\$PWD:/yadm:ro\"'\n\t@false"  > /yadm/Makefile
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								# By default, run all tests defined 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								CMD  make test