Files
containers/morty/Makefile
2021-09-07 15:29:07 -04:00

10 lines
204 B
Makefile

APP_NAME=morty
build:
docker rmi -f $(APP_NAME):latest
docker build -t $(APP_NAME) .
run:
@echo "\n /!\ DO NOT use in production\n"
docker run --rm -t -i --net=host --name="$(APP_NAME)" $(APP_NAME)