mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			507 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			507 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # run with:
 | |
| # docker build -t lazygit .
 | |
| # docker run -it lazygit:latest /bin/sh -l
 | |
| 
 | |
| FROM golang:alpine
 | |
| WORKDIR /go/src/github.com/jesseduffield/lazygit/
 | |
| COPY ./ .
 | |
| RUN CGO_ENABLED=0 GOOS=linux go build
 | |
| 
 | |
| FROM alpine:latest
 | |
| RUN apk add -U git xdg-utils
 | |
| WORKDIR /go/src/github.com/jesseduffield/lazygit/
 | |
| COPY --from=0 /go/src/github.com/jesseduffield/lazygit /go/src/github.com/jesseduffield/lazygit
 | |
| COPY --from=0 /go/src/github.com/jesseduffield/lazygit/lazygit /bin/
 | |
| RUN echo "alias gg=lazygit" >> ~/.profile
 |