Makefile (view raw)
1# Variables 2ENV_FILE=.env 3 4.PHONY: all clean build 5 6all: build 7 8# Build the Docker image 9build: $(REQUIREMENTS) 10 docker-compose build 11 12# Utility target to run the Docker container 13run: $(ENV_FILE) 14 docker-compose up