Upgrade node to 16.15.0 and yarn 1.22.18 and add node git

This commit is contained in:
2022-05-06 10:37:14 +07:00
parent e22f13c105
commit cb5d8ace85
4 changed files with 32 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
DOCKER_IMAGE=cubetiq/calpine-node
DOCKER_IMAGE_GIT=cubetiq/calpine-node-git
DOCKER_IMAGE_NAME=${DOCKER_IMAGE}:16
build:
@@ -10,4 +11,10 @@ build:
docker push ${DOCKER_IMAGE}
docker push ${DOCKER_IMAGE_NAME}
@echo 'Starting docker build with git'
docker build -f Dockfile.git . -t ${DOCKER_IMAGE}
@echo 'Starting docker push with git'
docker push ${DOCKER_IMAGE_GIT}
.PHONY:build