engine.#Pull: don't apply image config

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2021-12-22 16:26:58 +01:00
parent 3e5ce6df26
commit bb93b9d875

View File

@ -2,7 +2,6 @@ package task
import (
"context"
"encoding/json"
"fmt"
"github.com/docker/distribution/reference"
@ -60,16 +59,6 @@ func (c *pullTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.
return nil, err
}
imageJSON, err := json.Marshal(image)
if err != nil {
return nil, err
}
// Apply Image Config on top of LLB instructions
st, err = st.WithImageConfig(imageJSON)
if err != nil {
return nil, err
}
result, err := s.Solve(ctx, st, pctx.Platform.Get())
if err != nil {
return nil, err