1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-13 17:29:51 +08:00

Merge pull request #91 from mmdapl/fix/Dockerfile

This commit is contained in:
公众号:Rong姐姐好可爱
2023-11-21 08:48:14 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ ARG GIT_MESSAGE
ARG HOME_PAGE
# 作者信息
LABEL "author.name"="$AUTHOR" "author.email"="$EMAIL"
LABEL "maintainer"="$AUTHOR <$EMAIL>"
# 项目信息
LABEL "repo.name"=$APP_NAME "repo.version"=$APP_VERSION \

View File

@@ -40,7 +40,7 @@ async function getGitInfo() {
// 输出最近一次提交的信息
return {
gitHash: commitHash,
gitMessage: commitMessage.join('')
gitMessage: commitMessage.join(' ')
}
}