autopilot/Makefile
2019-09-29 17:17:58 -04:00

11 lines
217 B
Makefile

default: run
run: build
docker run --rm -v $(CURDIR):/app -p "5000:5000" --env-file=.env ianonavy/autopilot
build: Dockerfile
docker build -t ianonavy/autopilot .
release:
docker push ianonavy/autopilot:latest