11 lines
243 B
Makefile
11 lines
243 B
Makefile
|
all: build-quiet run
|
||
|
|
||
|
build:
|
||
|
@docker build . -t notifications_pushover
|
||
|
|
||
|
build-quiet:
|
||
|
@docker build . -t notifications_pushover -q 2>&1 >/dev/null
|
||
|
|
||
|
run:
|
||
|
@docker run --rm --env-file .env -v $$PWD/since_id:/app/since_id notifications_pushover
|