mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix issue with ADD
This commit is contained in:
parent
4b4918f2a7
commit
f03ebc20aa
1 changed files with 1 additions and 1 deletions
|
@ -221,6 +221,7 @@ func (b *buildFile) CmdAdd(args string) error {
|
|||
cmd := b.config.Cmd
|
||||
b.config.Cmd = []string{"/bin/sh", "-c", fmt.Sprintf("#(nop) ADD %s in %s", orig, dest)}
|
||||
|
||||
b.config.Image = b.image
|
||||
// Create the container and start it
|
||||
container, err := b.builder.Create(b.config)
|
||||
if err != nil {
|
||||
|
@ -297,7 +298,6 @@ func (b *buildFile) commit(id string, autoCmd []string, comment string) error {
|
|||
} else {
|
||||
utils.Debugf("[BUILDER] Cache miss")
|
||||
}
|
||||
|
||||
container, err := b.builder.Create(b.config)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue