docker-streaming-server/stream-playout/Makefile

15 lines
220 B
Makefile
Raw Normal View History

2020-09-20 01:09:20 +02:00
DOCKER = docker
image = stream-playout
tag = stable-alpine
.PHONY: all clean $(image)
all: $(image)
clean:
$(DOCKER) image rm $(image):$(tag)
$(image): Dockerfile package.json
$(DOCKER) build -t $(image):$(tag) .