Upgrade nodejs to 16.17.0 and add pnpm 7.9.5 for default

This commit is contained in:
2022-08-25 11:50:36 +07:00
parent c57953c52d
commit a3023036f8
7 changed files with 674 additions and 88 deletions

View File

@@ -18,3 +18,13 @@ build:
docker push ${DOCKER_IMAGE_GIT}
.PHONY:build
test:
@echo 'Starting docker build'
docker build . -t ${DOCKER_IMAGE}
@echo 'Starting docker run'
docker run --rm -it ${DOCKER_IMAGE} --version
@echo 'Starting docker run with git'
docker run --rm -it ${DOCKER_IMAGE_GIT} --version
.PHONY:test