mirror of
https://github.com/beego/bee.git
synced 2024-11-21 18:40:54 +00:00
Merge pull request #789 from y4h2/develop
fix lint | with uncoditional strings.Replace
This commit is contained in:
commit
5bbc43e153
@ -102,9 +102,7 @@ func dockerizeApp(cmd *commands.Command, args []string) int {
|
|||||||
// In case of multiple ports to expose inside the container,
|
// In case of multiple ports to expose inside the container,
|
||||||
// replace all the commas with whitespaces.
|
// replace all the commas with whitespaces.
|
||||||
// See the verb EXPOSE in the Docker documentation.
|
// 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)
|
_, entrypoint := path.Split(appdir)
|
||||||
dockerfile := Dockerfile{
|
dockerfile := Dockerfile{
|
||||||
|
Loading…
Reference in New Issue
Block a user