Fix resetting image metadata between stages for scratch case

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi 2017-05-12 12:00:55 -07:00
parent eb8abc9598
commit b192218503
3 changed files with 24 additions and 1 deletions

View File

@ -8,6 +8,7 @@ package dockerfile
// package.
import (
"bytes"
"fmt"
"regexp"
"runtime"
@ -16,7 +17,6 @@ import (
"strings"
"time"
"bytes"
"github.com/Sirupsen/logrus"
"github.com/docker/docker/api"
"github.com/docker/docker/api/types"

View File

@ -219,6 +219,8 @@ func (s *dispatchState) beginStage(stageName string, image builder.Image) {
if image.RunConfig() != nil {
s.runConfig = image.RunConfig()
} else {
s.runConfig = &container.Config{}
}
s.baseImage = image
s.setDefaultPath()

View File

@ -6202,6 +6202,27 @@ func (s *DockerSuite) TestBuildCopyFromWindowsIsCaseInsensitive(c *check.C) {
})
}
// #33176
func (s *DockerSuite) TestBuildCopyFromResetScratch(c *check.C) {
testRequires(c, DaemonIsLinux)
dockerfile := `
FROM busybox
WORKDIR /foo/bar
FROM scratch
ENV FOO=bar
`
ctx := fakecontext.New(c, "",
fakecontext.WithDockerfile(dockerfile),
)
defer ctx.Close()
cli.BuildCmd(c, "build1", build.WithExternalBuildContext(ctx))
res := cli.InspectCmd(c, "build1", cli.Format(".Config.WorkingDir")).Combined()
c.Assert(strings.TrimSpace(res), checker.Equals, "")
}
func (s *DockerSuite) TestBuildIntermediateTarget(c *check.C) {
dockerfile := `
FROM busybox AS build-env