Base Templates

This commit is contained in:
2025-12-10 20:39:40 +01:00
commit 10dfdd5605
7 changed files with 120 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
.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