all repos — albus-go @ f2f3f8a2cb36a51b320c4ab3470cc16a75367941

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