action bluemix_post_build { label: "Build a Docker image from a Dockerfile" description: "This API builds a new container image from a Dockerfile that is stored on your local machine and pushes the image to the private Bluemix registry (corresponding IBM Containers command: `cf ic build`).\n\n To push an image to your Bluemix registry, a namespace must be set for the organization. Run `cf ic namespace get` or call the `GET /registry/namespaces` API to check if a namespace is already set. If not, run `cf ic namespace set NAMESPACE` or call the `PUT /registry/namespaces/{namespace}` API to set a namespace for your organization." provider: bluemix method: POST path: "/build" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } nocache: { type: "boolean" } pull: { type: "boolean" } q: { type: "boolean" } t: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "t"] additionalProperties: false } output: { type: "object" additionalProperties: true } }