1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-29 22:07:13 +02:00

Merge pull request #254 from jesseduffield/feature/dockerfile-for-alpine

Dockerfile for testing on alpine linux
This commit is contained in:
Jesse Duffield 2018-09-05 14:20:51 +10:00 committed by GitHub
commit f0e19690f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
# 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