all repos — albus-go @ 1bfa2838c5f0158361bf532c8766cbef2d4efb23

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