Files
interview/Makefile

13 lines
187 B
Makefile
Raw Normal View History

2025-05-16 22:11:10 +03:00
BASENAME=devenv
2025-05-16 22:25:12 +03:00
2025-05-16 22:11:10 +03:00
IMAGE_NAME=$(BASENAME):latest
build:
$(info BUILDING IMAGE NAME: $(IMAGE_NAME))
docker build \
-t $(IMAGE_NAME) \
-f Dockerfile .
docker image ls $(IMAGE_NAME)