mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-24 08:52:21 +02:00
18 lines
537 B
Docker
18 lines
537 B
Docker
# run with:
|
|
# docker build -t lazygit .
|
|
# docker run -it lazygit:latest /bin/sh
|
|
|
|
FROM golang:1.14-alpine3.11
|
|
WORKDIR /go/src/github.com/jesseduffield/lazygit/
|
|
COPY ./ .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build
|
|
|
|
FROM alpine:3.11
|
|
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
|
|
|
|
ENTRYPOINT [ "lazygit" ]
|