# Docker image for app3 voicebot (see Dockerfile at repo root).
IMAGE ?= app3-voicebot:latest

.PHONY: install build rebuild

# Build production image (matches supervisor stack in docker/supervisord.conf).
build:
	docker build -t $(IMAGE) .

# Alias for teams that expect `make install` after clone.
install: build
	@echo "Image $(IMAGE) ready. Example: docker run -d --name app3-voicebot -p 8000:8000 -p 8088:8088 $(IMAGE)"

rebuild: build
