mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Set OS on scratch image and prevent panic if empty
Signed-off-by: John Stephens <johnstep@docker.com>
This commit is contained in:
parent
b00b1b1c40
commit
a97817b673
3 changed files with 39 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
package dockerfile
|
package dockerfile
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"runtime"
|
||||||
|
|
||||||
"github.com/docker/docker/api/types/backend"
|
"github.com/docker/docker/api/types/backend"
|
||||||
"github.com/docker/docker/builder"
|
"github.com/docker/docker/builder"
|
||||||
"github.com/docker/docker/builder/remotecontext"
|
"github.com/docker/docker/builder/remotecontext"
|
||||||
|
@ -73,7 +75,13 @@ func (m *imageSources) Unmount() (retErr error) {
|
||||||
func (m *imageSources) Add(im *imageMount) {
|
func (m *imageSources) Add(im *imageMount) {
|
||||||
switch im.image {
|
switch im.image {
|
||||||
case nil:
|
case nil:
|
||||||
im.image = &dockerimage.Image{}
|
// set the OS for scratch images
|
||||||
|
os := runtime.GOOS
|
||||||
|
// Windows does not support scratch except for LCOW
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
os = "linux"
|
||||||
|
}
|
||||||
|
im.image = &dockerimage.Image{V1Image: dockerimage.V1Image{OS: os}}
|
||||||
default:
|
default:
|
||||||
m.byImageID[im.image.ImageID()] = im
|
m.byImageID[im.image.ImageID()] = im
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,7 +95,14 @@ func (daemon *Daemon) create(params types.ContainerCreateConfig, managed bool) (
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if img.OS != "" {
|
||||||
os = img.OS
|
os = img.OS
|
||||||
|
} else {
|
||||||
|
// default to the host OS except on Windows with LCOW
|
||||||
|
if runtime.GOOS == "windows" && system.LCOWSupported() {
|
||||||
|
os = "linux"
|
||||||
|
}
|
||||||
|
}
|
||||||
imgID = img.ID()
|
imgID = img.ID()
|
||||||
|
|
||||||
if runtime.GOOS == "windows" && img.OS == "linux" && !system.LCOWSupported() {
|
if runtime.GOOS == "windows" && img.OS == "linux" && !system.LCOWSupported() {
|
||||||
|
|
|
@ -619,6 +619,28 @@ func testBuildWithSession(c *check.C, dir, dockerfile string) (outStr string) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *DockerSuite) TestBuildScratchCopy(c *check.C) {
|
||||||
|
testRequires(c, DaemonIsLinux)
|
||||||
|
dockerfile := `FROM scratch
|
||||||
|
ADD Dockerfile /
|
||||||
|
ENV foo bar`
|
||||||
|
ctx := fakecontext.New(c, "",
|
||||||
|
fakecontext.WithDockerfile(dockerfile),
|
||||||
|
)
|
||||||
|
defer ctx.Close()
|
||||||
|
|
||||||
|
res, body, err := request.Post(
|
||||||
|
"/build",
|
||||||
|
request.RawContent(ctx.AsTarReader(c)),
|
||||||
|
request.ContentType("application/x-tar"))
|
||||||
|
c.Assert(err, checker.IsNil)
|
||||||
|
c.Assert(res.StatusCode, checker.Equals, http.StatusOK)
|
||||||
|
|
||||||
|
out, err := request.ReadBody(body)
|
||||||
|
require.NoError(c, err)
|
||||||
|
assert.Contains(c, string(out), "Successfully built")
|
||||||
|
}
|
||||||
|
|
||||||
type buildLine struct {
|
type buildLine struct {
|
||||||
Stream string
|
Stream string
|
||||||
Aux struct {
|
Aux struct {
|
||||||
|
|
Loading…
Reference in a new issue