1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

builder: fixed workdir comment

Signed-off-by: Wendel Fleming <wfleming@usc.edu>
This commit is contained in:
Wendel Fleming 2016-05-19 15:40:46 -05:00
parent 376c15bbaa
commit 131161bbc7

View file

@ -266,7 +266,7 @@ func workdir(b *Builder, args []string, attributes map[string]bool, original str
return err
}
return b.commit("", b.runConfig.Cmd, fmt.Sprintf("WORKDIR %v", workdir))
return b.commit("", b.runConfig.Cmd, fmt.Sprintf("WORKDIR %v", b.runConfig.WorkingDir))
}
// RUN some command yo