m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-08 11:23:47 -05:00

Add Dockerfile for running tests

make docker
make docker-test
This commit is contained in:
Junegunn Choi
2018-06-01 18:23:25 +09:00
parent 68ec3d1c10
commit 76a2dcb5a9
2 changed files with 20 additions and 1 deletions

View File

@@ -128,4 +128,12 @@ target/$(BINARYARM8): $(SOURCES) vendor
bin/fzf: target/$(BINARY) | bin
cp -f target/$(BINARY) bin/fzf
.PHONY: all release release-all test install clean
docker:
docker build -t fzf-arch .
docker run -it fzf-arch tmux
docker-test:
docker build -t fzf-arch .
docker run -it fzf-arch
.PHONY: all release release-all test install clean docker docker-test