This commit is contained in:
2025-05-16 22:11:10 +03:00
commit 02991449f1
7 changed files with 157 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
#image basename
BASENAME=devenv
# TODO use git tag
IMAGE_NAME=$(BASENAME):latest
build:
$(info BUILDING IMAGE NAME: $(IMAGE_NAME))
docker build \
-t $(IMAGE_NAME) \
-f Dockerfile .
docker image ls $(IMAGE_NAME)