We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b23d3cf commit b0a58e5Copy full SHA for b0a58e5
internal/docker/builder.go
@@ -343,6 +343,10 @@ func (d *Builder) construct(bprint b.Blueprint) (errs []error) {
343
Pause: true,
344
Reference: "localhost/complement:" + res.contextStr,
345
Changes: toChanges(labels),
346
+
347
+ // Podman's compatibility API returns a 500 if the POST request has an empty body, so we give it an empty
348
+ // Config to chew on.
349
+ Config: &container.Config{},
350
})
351
if err != nil {
352
d.log("%s : failed to ContainerCommit: %s\n", res.contextStr, err)
0 commit comments