mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			268 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			268 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # run with:
 | |
| # docker build -t lazygit .
 | |
| # docker run -it lazygit:latest
 | |
| 
 | |
| FROM golang:alpine
 | |
| 
 | |
| RUN apk add -U git xdg-utils
 | |
| 
 | |
| ADD . /go/src/github.com/jesseduffield/lazygit
 | |
| 
 | |
| RUN go install github.com/jesseduffield/lazygit
 | |
| 
 | |
| WORKDIR /go/src/github.com/jesseduffield/lazygit |