summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: a85e4f20f5d3c457ee02f82722305b4eec6f50d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# run with:
# docker build -t lazygit .
# docker run -it lazygit:latest /bin/sh -l

FROM golang:1.13-alpine3.10
WORKDIR /go/src/github.com/jesseduffield/lazygit/
COPY ./ .
RUN CGO_ENABLED=0 GOOS=linux go build

FROM alpine:3.10
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