mirror of
				https://github.com/avatao-content/test-tutorial-framework
				synced 2025-11-04 10:02:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM avatao/controller:debian-buster
 | 
						|
 | 
						|
USER root
 | 
						|
ENV PYTHONPATH="/usr/local/lib"      \
 | 
						|
    TFW_PUBLISHER_PORT=7654          \
 | 
						|
    TFW_RECEIVER_PORT=8765           \
 | 
						|
    TFW_AUTH_KEY="/tmp/tfw-auth.key" \
 | 
						|
    CONTROLLER_PORT=5555
 | 
						|
 | 
						|
COPY ./controller/ /
 | 
						|
 | 
						|
CMD ["python3", "/opt/server.py"]
 |