docker-streaming-server/nginx-rtmp/Makefile

15 lines
231 B
Makefile
Raw Normal View History

2020-09-20 01:04:14 +02:00
DOCKER = docker
image = nginx-rtmp
tag = alpine3.12
.PHONY: all clean $(image)
all: $(image)
clean:
$(DOCKER) image rm $(image):$(tag)
$(image): Dockerfile docker-entrypoint.sh rtmp.conf
$(DOCKER) build -t $(image):$(tag) .