Files
2025-12-10 20:39:40 +01:00

9 lines
196 B
Plaintext

.PHONY ...
DOCKER_NAME = project:name
PACKAGES = ./src/.
docker: # build a dockerfile in same dir and shell into it
docker build -t $(DOCKER_NAME) .
docker run -it --rm $(DOCKER_NAME) /bin/sh