summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2018-06-01 18:23:25 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2018-06-01 18:23:25 +0900
commit76a2dcb5a95c3027eeb811c0abb9331928c13653 (patch)
treee946779887bdac7c16ff722e347dd034c96c6ad7 /Makefile
parent68ec3d1c1049fa2554b9d8e4f810dd0e40b6379b (diff)
Add Dockerfile for running tests
make docker make docker-test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 22992170..95d91d14 100644
--- a/Makefile
+++ b/Makefile
@@ -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