source: code/trunk/Makefile@ 127

Last change on this file since 127 was 93, checked in by asciimoo, 6 years ago

Merge pull request #73 from asciimoo/docker

Add Dockerfile and Makefile

File size: 204 bytes
Line 
1APP_NAME=morty
2
3build:
4 docker rmi -f $(APP_NAME):latest
5 docker build -t $(APP_NAME) .
6
7run:
8 @echo "\n /!\ DO NOT use in production\n"
9 docker run --rm -t -i --net=host --name="$(APP_NAME)" $(APP_NAME)
Note: See TracBrowser for help on using the repository browser.