[fix:6.0]重命名overrides脚本名称;更新Makefile中镜像名称定义及清理脚本;优化Dockerfile

This commit is contained in:
2020-09-13 18:46:08 +08:00
parent 57777e7685
commit 0f7ae35333
4 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ COPY customer /
# 以包管理方式安装软件包(Optional)
RUN select_source ${apt_source}
#RUN install_pkg libssl1.1
RUN install_pkg libssl1.1
RUN create_user && prepare_env
+1 -1
View File
@@ -44,7 +44,7 @@ clean:
# 为了防止删除前缀名相同的镜像,在过滤条件中加入一个空格进行过滤
clearclean: clean
@echo "Clean all images for current application..."
@docker images | grep "$(app_name) " | awk '{print $$3}' | xargs docker rmi -f | :
docker images | grep "$(app_name) " | awk '{print $$3}' | xargs docker rmi -f | :
tag:
@echo "Add tag: $(local_registory)/$(app_name):latest"