calpine-os-linux/Makefile
2021-03-26 10:31:24 +07:00

8 lines
270 B
Makefile

DOCKER_IMAGE_NAME = cubetiq/calpine-os-linux:3.13
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE_NAME) | cut -d\ -f2)
build:
$(shell ./src/build.sh)
@echo "Size of the image: ${DOCKER_IMAGE_SIZE}"
.PHONY: build