新增客户端docker镜像build脚本

This commit is contained in:
aoshiguchen
2023-07-25 14:34:04 +08:00
parent a7b077af8c
commit c76c4d8257
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
# 镜像版本,每次更新版本时需要调整
ImageVer=1.8.5
ImageName=neutrino-proxy-client
DockerFilePath=$PWD/../../neutrino-proxy-client/Dockerfile
#echo '打包jar...'
sh ./client_build.sh
# 删除老的本地镜像
docker rmi -f $(docker images | grep $ImageName | awk '{print $3}')
# 构建镜像
docker build -t $ImageName:$ImageVer -t $ImageName:latest -f $DockerFilePath $PWD/../..