IMAGE_NAME = thats-the-stuff

help:
	@echo "build    build the Docker image"
	@echo "rebuild  rebuild the Docker image without cache"
	@echo "run      run the container on http://localhost:8080"

build:
	docker build -t $(IMAGE_NAME) .

rebuild:
	docker build --no-cache -t $(IMAGE_NAME) .

run:
	docker run -p 8080:80 $(IMAGE_NAME)
