Add init and add node and docker file for build nodejs 14 with cubetiq alpine os linux

This commit is contained in:
2021-03-29 13:57:53 +07:00
commit c07e22ea8a
5 changed files with 176 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
DOCKER_IMAGE=cubetiq/calpine-node
DOCKER_IMAGE_NAME=${DOCKER_IMAGE}:14
build:
@echo 'Starting docker build'
docker build . -t ${DOCKER_IMAGE}
@echo 'Starting docker push'
docker tag ${DOCKER_IMAGE} ${DOCKER_IMAGE_NAME}
docker push ${DOCKER_IMAGE}
docker push ${DOCKER_IMAGE_NAME}
.PHONY:build