Files
interview/Makefile

14 lines
221 B
Makefile
Raw Normal View History

2025-05-16 22:11:10 +03:00
#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)