13 lines
		
	
	
		
			292 B
		
	
	
	
		
			Docker
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			292 B
		
	
	
	
		
			Docker
		
	
	
| FROM thevlang/vlang:buster-build
 | |
| 
 | |
| 
 | |
| COPY ./ /src/
 | |
| 
 | |
| WORKDIR /src
 | |
| 
 | |
| RUN make CC=clang 
 | |
| 
 | |
| RUN /src/v /src/vlib/net/websocket/tests/autobahn/autobahn_server.v
 | |
| RUN chmod +x /src/vlib/net/websocket/tests/autobahn/autobahn_server
 | |
| ENTRYPOINT [ "/src/vlib/net/websocket/tests/autobahn/autobahn_server" ]
 |