mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
LCOW: Fix FROM scratch
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
e516af6e56
commit
20b11792e8
1 changed files with 3 additions and 0 deletions
|
@ -170,6 +170,9 @@ func (i *ImageService) pullForBuilder(ctx context.Context, name string, authConf
|
||||||
func (i *ImageService) GetImageAndReleasableLayer(ctx context.Context, refOrID string, opts backend.GetImageAndLayerOptions) (builder.Image, builder.ROLayer, error) {
|
func (i *ImageService) GetImageAndReleasableLayer(ctx context.Context, refOrID string, opts backend.GetImageAndLayerOptions) (builder.Image, builder.ROLayer, error) {
|
||||||
if refOrID == "" { // ie FROM scratch
|
if refOrID == "" { // ie FROM scratch
|
||||||
os := runtime.GOOS
|
os := runtime.GOOS
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
os = "linux"
|
||||||
|
}
|
||||||
if opts.Platform != nil {
|
if opts.Platform != nil {
|
||||||
os = opts.Platform.OS
|
os = opts.Platform.OS
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue