mirror of
https://git.roussel.pro/public-website/singapore_rain_radar.git
synced 2026-02-09 10:30:17 +01:00
12 lines
214 B
Makefile
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 |