mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 82d7b9f2e2
			
		
	
	82d7b9f2e2
	
	
	
		
			
			to prevent any regressions, we should be running regression tests using compose. Signed-off-by: baude <bbaude@redhat.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| app = Flask(__name__)
 | |
| 
 | |
| @app.route('/')
 | |
| def hello():
 | |
|     f = open("/data/message")
 | |
|     return f.read()
 | |
| 
 | |
| if __name__ == '__main__':
 | |
| 	app.run(host='0.0.0.0')
 |