mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	As per http://blog.docker.com/2015/03/updates-available-to-popular-repos-update-your-images/ docker has stopped answering dockerfile/redis and dockerfile/nginx. Fix all users in our tree. Sadly this means a lot of published examples are now broken.
		
			
				
	
	
		
			10 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM library/celery
 | 
						|
 | 
						|
ADD celery_conf.py /data/celery_conf.py
 | 
						|
ADD run_tasks.py /data/run_tasks.py
 | 
						|
ADD run.sh /usr/local/bin/run.sh
 | 
						|
 | 
						|
ENV C_FORCE_ROOT 1
 | 
						|
 | 
						|
CMD ["/bin/bash", "/usr/local/bin/run.sh"]
 |