added possibility to download latest images

This commit is contained in:
Quentin Roussel
2024-08-18 00:57:29 +08:00
commit ab1d1669a6
6 changed files with 106 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
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