Merge pull request #789 from y4h2/develop

fix lint | with uncoditional strings.Replace
This commit is contained in:
Ming Deng 2021-06-17 23:09:25 +08:00 committed by GitHub
commit 5bbc43e153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -102,9 +102,7 @@ func dockerizeApp(cmd *commands.Command, args []string) int {
// In case of multiple ports to expose inside the container,
// replace all the commas with whitespaces.
// See the verb EXPOSE in the Docker documentation.
if strings.Contains(expose, ",") {
expose = strings.Replace(expose, ",", " ", -1)
}
expose = strings.Replace(expose, ",", " ", -1)
_, entrypoint := path.Split(appdir)
dockerfile := Dockerfile{