8 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
		
		
			
		
	
	
			8 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| 
								 | 
							
								FROM ubuntu:18.04
							 | 
						||
| 
								 | 
							
								ENV DEBIAN_FRONTEND=noninteractive
							 | 
						||
| 
								 | 
							
								RUN apt-get -y update \
							 | 
						||
| 
								 | 
							
								&& apt-get install -y software-properties-common
							 | 
						||
| 
								 | 
							
								RUN add-apt-repository cloud-archive:stein
							 | 
						||
| 
								 | 
							
								RUN apt install nova-api -y
							 | 
						||
| 
								 | 
							
								COPY nova.conf /etc/nova/nova.conf
							 | 
						||
| 
								 | 
							
								ENTRYPOINT [ "nova-api" ]
							 |