1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-15 00:15:15 +02:00

fix build info

This commit is contained in:
Lee Brown
2019-08-06 18:38:45 -08:00
parent 73b8257667
commit 6948572f15
8 changed files with 35 additions and 45 deletions

View File

@ -296,6 +296,7 @@ func ServiceBuild(log *log.Logger, req *serviceBuildRequest) error {
cmds = append(cmds, []string{
"docker", "build",
"--file=" + dockerFile,
"--cache-from", buildBaseImage,
"--build-arg", "service=" + req.ServiceName,
"--build-arg", "env=" + req.Env,
"-t", buildBaseImage,