1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-04 03:48:07 +02:00
lazygit/Dockerfile

14 lines
371 B
Docker
Raw Normal View History

2018-09-04 11:03:35 +02:00
# run with:
# docker build -t lazygit .
# docker run -it lazygit:latest
FROM golang:alpine
2018-12-05 03:38:32 +02:00
WORKDIR /go/src/github.com/jesseduffield/lazygit/
COPY ./ .
RUN CGO_ENABLED=0 GOOS=linux go build -o lazygit .
2018-09-04 11:03:35 +02:00
2018-12-05 03:38:32 +02:00
FROM alpine:latest
2018-09-04 11:03:35 +02:00
RUN apk add -U git xdg-utils
WORKDIR /go/src/github.com/jesseduffield/lazygit/
COPY --from=0 /go/src/github.com/jesseduffield/lazygit/lazygit /bin/