Files
singapore_rain_radar/Makefile
2024-08-18 00:57:29 +08:00

12 lines
214 B
Makefile

APP_NAME = "sg_rainradar_video"
build:
docker build . -t $(APP_NAME)
debug:build
docker run \
-it \
--mount type=bind,source=$(PWD)/images,target=/home/node/app/images \
$(APP_NAME)
.PHONY: build debug run