mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM golang:1.16 as base
 | 
						|
 | 
						|
FROM base as dev
 | 
						|
 | 
						|
ENV GO111MODULE=on
 | 
						|
ENV GOPROXY=https://goproxy.cn,direct
 | 
						|
 | 
						|
 | 
						|
RUN curl -sSfL https://raw.githubusercontent.com/cosmtrek/air/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
 | 
						|
 | 
						|
CMD ["air"] |