2021-03-26 11:05:37 +07:00
|
|
|
DOCKER_IMAGE_NAME = cubetiq/calpine-os-linux
|
2021-03-26 10:15:40 +07:00
|
|
|
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE_NAME) | cut -d\ -f2)
|
|
|
|
|
|
|
|
build:
|
2021-03-26 11:02:54 +07:00
|
|
|
./src/build.sh
|
2021-03-26 10:15:40 +07:00
|
|
|
@echo "Size of the image: ${DOCKER_IMAGE_SIZE}"
|
|
|
|
|
2021-03-26 12:30:37 +07:00
|
|
|
docker push ${DOCKER_IMAGE_NAME}
|
2021-03-26 12:20:52 +07:00
|
|
|
|
2021-03-26 11:02:54 +07:00
|
|
|
.PHONY: build
|