Skip to content

Commit

Permalink
Add a makefile to document the commands to build and run a Jarvis con…
Browse files Browse the repository at this point in the history
…tainer
  • Loading branch information
jpigree committed May 27, 2018
1 parent 06b82b0 commit 0b76e45
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
VERSION:=1.0

build_docker:
cd $(CURDIR) && docker build -t jarvis:$(VERSION) .

run_docker:
#Needs "xhost local:docker"
docker run -it --rm -e DISPLAY=${DISPLAY} -v /tmp/.X11-unix:/tmp/.X11-unix jarvis:$(VERSION)

0 comments on commit 0b76e45

Please sign in to comment.