diff --git a/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden index e69a472a8d..dd75829c4b 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-create-usage.golden @@ -1,48 +1,45 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Create a new container in the specified region. - -When creating a container, the `created` status is no longer used. The deployment process is started -and the status is set to `pending` accordingly. +Name must be unique inside the given namespace. USAGE: scw container container create [arg=value ...] ARGS: - [namespace-id] UUID of the namespace the container belongs to - [name] Name of the container - [environment-variables.{key}] Environment variables of the container - [min-scale] Minimum number of instances to scale the container to - [max-scale] Maximum number of instances to scale the container to - [memory-limit] Memory limit of the container in MB - [cpu-limit] CPU limit of the container in mvCPU - [timeout] Processing time limit for the container - [privacy] Privacy setting of the container (unknown_privacy | public | private) - [description] Description of the container - [registry-image] Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). - [protocol] Protocol the container uses (unknown_protocol | http1 | h2c) - [port] Port the container listens on - [secret-environment-variables.{index}.key] - [secret-environment-variables.{index}.value] - [http-option=enabled] Configure how HTTP and HTTPS requests are handled (unknown_http_option | enabled | redirected) - [sandbox] Execution environment of the container (unknown_sandbox | v1 | v2) - [local-storage-limit] Local storage limit of the container (in MB) - [scaling-option.concurrent-requests-threshold] - [scaling-option.cpu-usage-threshold] - [scaling-option.memory-usage-threshold] - [health-check.http.path] Path to use for the HTTP health check. - [health-check.failure-threshold] Number of consecutive health check failures before considering the container unhealthy. - [health-check.interval] Period between health checks. - [tags.{index}] Tags of the Serverless Container + namespace-id Unique ID of the namespace the container belongs to. + name Container name. + [environment-variables.{key}] Environment variables of the container. + [secret-environment-variables.{key}] Secret environment variables of the container. + [min-scale] Minimum number of instances to scale the container to. + [max-scale] Maximum number of instances to scale the container to. + [memory-limit-bytes] Memory limit of the container in bytes. + [mvcpu-limit] CPU limit of the container in mvCPU. + [timeout] Processing time limit for the container. + [privacy=public] Privacy policy of the container. (unknown_privacy | public | private) + [description] Container description. + image Image reference (e.g. "rg.fr-par.scw.cloud/my-registry-namespace/image:tag"). + [protocol=http1] Protocol the container uses. (unknown_protocol | http1 | h2c) + [port=8080] Port the container listens on. + [https-connections-only=false] If true, it will allow only HTTPS connections to access your container to prevent it from being triggered by insecure connections (HTTP). + [sandbox=v2] Execution environment of the container. (unknown_sandbox | v1 | v2) + [local-storage-limit-bytes] Local storage limit of the container (in bytes). + [scaling-option.concurrent-requests-threshold] Scale depending on the number of concurrent requests being processed per container instance. The threshold value is the number of concurrent requests above which the container will be scaled up. + [scaling-option.cpu-usage-threshold] Scale depending on the CPU usage of a container instance. The threshold value is the percentage of CPU usage above which the container will be scaled up. + [scaling-option.memory-usage-threshold] Scale depending on the memory usage of a container instance. The threshold value is the percentage of memory usage above which the container will be scaled up. + [liveness-probe.failure-threshold] Number of consecutive failures before considering the container as unhealthy + [liveness-probe.interval] Time interval between checks. + [liveness-probe.timeout] Duration before the check times out. + [liveness-probe.http.path] HTTP path to perform the check on. + [startup-probe.failure-threshold] Number of consecutive failures before considering the container as unhealthy + [startup-probe.interval] Time interval between checks. + [startup-probe.timeout] Duration before the check times out. + [startup-probe.http.path] HTTP path to perform the check on. + [tags.{index}] Tags of the Serverless Container. [private-network-id] ID of the Private Network the container is connected to. [command.{index}] Container command [args.{index}] Container arguments - [deploy=true] Deploy container after creation [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) -DEPRECATED ARGS: - [max-concurrency] Number of maximum concurrent executions of the container - FLAGS: -h, --help help for create --list-sub-commands List all subcommands diff --git a/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden index 5b8da8c7e4..f72c731e1f 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-delete-usage.golden @@ -1,12 +1,14 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Delete the container associated with the specified ID. +It also deletes in cascade any resource linked to the container (crons, tokens, etc.). + +This action **cannot** be undone. USAGE: scw container container delete [arg=value ...] ARGS: - container-id UUID of the container to delete + container-id UUID of the container to delete. [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden index 70fe95663e..c2eb3dd566 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-get-usage.golden @@ -3,10 +3,10 @@ Get the container associated with the specified ID. USAGE: - scw container container get [arg=value ...] + scw container container get [arg=value ...] ARGS: - container-id UUID of the container to get + container-id [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden index f0dbf13565..9debc218bc 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-list-usage.golden @@ -1,16 +1,18 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all containers for a specified region. +By default, the containers listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, and `name`. USAGE: scw container container list [arg=value ...] ARGS: - [order-by] Order of the containers (created_at_asc | created_at_desc | name_asc | name_desc) - [namespace-id] UUID of the namespace the container belongs to - [name] Name of the container - [project-id] UUID of the Project the container belongs to - [organization-id] UUID of the Organization the container belongs to + [order-by] (created_at_asc | created_at_desc | name_asc | name_desc) + [project-id] + [namespace-id] + [name] + [organization-id] [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-container-redeploy-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-redeploy-usage.golden new file mode 100644 index 0000000000..4219925245 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-container-container-redeploy-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Performs a rollout of the container by creating new instances with the latest image version and terminating the old instances. +When using mutable registry image references (e.g. `my-registry-namespace/image:tag`), this endpoint can be used to force the container to use +the most recent image version available in the registry. + +USAGE: + scw container container redeploy [arg=value ...] + +ARGS: + container-id ID of the container to redeploy. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for redeploy + --list-sub-commands List all subcommands + -w, --wait wait until the container is ready + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden index 15c75da6ec..835d6a71bc 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-update-usage.golden @@ -1,48 +1,44 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Update the container associated with the specified ID. - -When updating a container, the container is automatically redeployed to apply the changes. - -Warning: The `redeploy` field has been deprecated. An update now always redeploys the container. +Only fields present in the request are updated; others are left untouched. USAGE: scw container container update [arg=value ...] ARGS: - container-id UUID of the container to update - [environment-variables.{key}] Environment variables of the container - [min-scale] Minimum number of instances to scale the container to - [max-scale] Maximum number of instances to scale the container to - [memory-limit] Memory limit of the container in MB - [cpu-limit] CPU limit of the container in mvCPU - [timeout] Processing time limit for the container - [privacy] Privacy settings of the container (unknown_privacy | public | private) - [description] Description of the container - [registry-image] Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). - [protocol] Protocol the container uses (unknown_protocol | http1 | h2c) - [port] Port the container listens on - [secret-environment-variables.{index}.key] - [secret-environment-variables.{index}.value] - [http-option] Configure how HTTP and HTTPS requests are handled (unknown_http_option | enabled | redirected) - [sandbox] Execution environment of the container (unknown_sandbox | v1 | v2) - [local-storage-limit] Local storage limit of the container (in MB) - [scaling-option.concurrent-requests-threshold] - [scaling-option.cpu-usage-threshold] - [scaling-option.memory-usage-threshold] - [health-check.http.path] Path to use for the HTTP health check. - [health-check.failure-threshold] Number of consecutive health check failures before considering the container unhealthy. - [health-check.interval] Period between health checks. - [tags.{index}] Tags of the Serverless Container + container-id UUID of the container to update. + [environment-variables.{key}] Environment variables of the container. + [secret-environment-variables.{key}] Secret environment variables of the container. + [min-scale] Minimum number of instances to scale the container to. + [max-scale] Maximum number of instances to scale the container to. + [memory-limit-bytes] Memory limit of the container in bytes. + [mvcpu-limit] CPU limit of the container in mvCPU. + [timeout] Processing time limit for the container. + [privacy] Privacy policy of the container. (unknown_privacy | public | private) + [description] Container description. + [image] Image reference (e.g. "rg.fr-par.scw.cloud/my-registry-namespace/image:tag"). + [protocol] Protocol the container uses. (unknown_protocol | http1 | h2c) + [port] Port the container listens on. + [https-connection-only] If true, it will allow only HTTPS connections to access your container to prevent it from being triggered by insecure connections (HTTP). + [sandbox] Execution environment of the container. (unknown_sandbox | v1 | v2) + [local-storage-limit-bytes] Local storage limit of the container (in bytes). + [scaling-option.concurrent-requests-threshold] Scale depending on the number of concurrent requests being processed per container instance. The threshold value is the number of concurrent requests above which the container will be scaled up. + [scaling-option.cpu-usage-threshold] Scale depending on the CPU usage of a container instance. The threshold value is the percentage of CPU usage above which the container will be scaled up. + [scaling-option.memory-usage-threshold] Scale depending on the memory usage of a container instance. The threshold value is the percentage of memory usage above which the container will be scaled up. + [liveness-probe.failure-threshold] Number of consecutive failures before considering the container as unhealthy + [liveness-probe.interval] Time interval between checks. + [liveness-probe.timeout] Duration before the check times out. + [liveness-probe.http.path] HTTP path to perform the check on. + [startup-probe.failure-threshold] + [startup-probe.interval] + [startup-probe.timeout] + [startup-probe.http.path] + [tags.{index}] Tags of the Serverless Container. [private-network-id] ID of the Private Network the container is connected to. [command.{index}] Container command [args.{index}] Container arguments [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) -DEPRECATED ARGS: - [redeploy] Defines whether to redeploy failed containers - [max-concurrency] Number of maximum concurrent executions of the container - FLAGS: -h, --help help for update --list-sub-commands List all subcommands diff --git a/cmd/scw/testdata/test-all-usage-container-container-usage.golden b/cmd/scw/testdata/test-all-usage-container-container-usage.golden index dbe417e104..a642d789d4 100644 --- a/cmd/scw/testdata/test-all-usage-container-container-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-container-usage.golden @@ -6,12 +6,12 @@ USAGE: scw container container AVAILABLE COMMANDS: - create Create a new container - delete Delete a container - deploy Deploy a container - get Get a container - list List all your containers - update Update an existing container + create Create a new container in a namespace. + delete Delete the container associated with the specified ID. + get Get the container associated with the specified ID. + list List all containers the caller can access (read permission). + redeploy Redeploy a container + update Update the container associated with the specified ID. FLAGS: -h, --help help for container diff --git a/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden index e5e5349b0c..c935a3870d 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-create-usage.golden @@ -1,13 +1,14 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Create a custom domain for the container with the specified ID. +Create a new custom domain for the container with the specified ID. USAGE: scw container domain create [arg=value ...] ARGS: - [hostname] Domain to assign - [container-id] UUID of the container to assign the domain to + container-id Unique ID of the container the domain will be assigned to. + hostname Domain assigned to the container. + [tags.{index}] A list of arbitrary tags associated with the domain. [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden index 5c0c2087e7..49e341d048 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-delete-usage.golden @@ -1,12 +1,12 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Delete the custom domain with the specific ID. +Delete the custom domain associated with the specified ID. USAGE: scw container domain delete [arg=value ...] ARGS: - domain-id UUID of the domain to delete + domain-id UUID of the domain to delete. [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden index 8a1e736cec..459ebaf91d 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-get-usage.golden @@ -1,12 +1,12 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Get a custom domain for the container with the specified ID. +Get the custom domain associated with the specified ID. USAGE: - scw container domain get [arg=value ...] + scw container domain get [arg=value ...] ARGS: - domain-id UUID of the domain to get + domain-id [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden index 928343c1cb..9c50c74f8f 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-list-usage.golden @@ -1,14 +1,19 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all custom domains in a specified region. +By default, the custom domains listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter the output, such as `organization_id`, `project_id`, `namespace_id`, or `container_id`. USAGE: scw container domain list [arg=value ...] ARGS: - [order-by] Order of the domains (created_at_asc | created_at_desc | hostname_asc | hostname_desc) - [container-id] UUID of the container the domain belongs to - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + [order-by] (created_at_asc | created_at_desc | hostname_asc | hostname_desc) + [project-id] + [namespace-id] + [container-id] + [organization-id] + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: -h, --help help for list diff --git a/cmd/scw/testdata/test-all-usage-container-domain-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-update-usage.golden new file mode 100644 index 0000000000..b70b3d9f0e --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-container-domain-update-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Only fields present in the request are updated; others are left untouched. + +USAGE: + scw container domain update [arg=value ...] + +ARGS: + domain-id UUID of the domain to update. + [tags.{index}] A list of arbitrary tags associated with the domain. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for update + --list-sub-commands List all subcommands + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-container-domain-usage.golden b/cmd/scw/testdata/test-all-usage-container-domain-usage.golden index 1c4adb9863..b6fd2b1c87 100644 --- a/cmd/scw/testdata/test-all-usage-container-domain-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-domain-usage.golden @@ -6,10 +6,11 @@ USAGE: scw container domain AVAILABLE COMMANDS: - create Create a custom domain - delete Delete a custom domain - get Get a custom domain - list List all custom domains + create Create a new custom domain for the container with the specified ID. + delete Delete the custom domain associated with the specified ID. + get Get the custom domain associated with the specified ID. + list List all custom domains the caller can access (read permission). + update Update the domain associated with the specified ID. FLAGS: -h, --help help for domain diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden index daa881e97e..e1af26f694 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-create-usage.golden @@ -1,22 +1,18 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Create a new namespace in a specified region. +Namespace name must be unique inside a project. USAGE: scw container namespace create [arg=value ...] ARGS: - [name=] Name of the namespace to create - [environment-variables.{key}] Environment variables of the namespace to create - [project-id] Project ID to use. If none is passed the default project ID will be used - [description] Description of the namespace to create - [secret-environment-variables.{index}.key] - [secret-environment-variables.{index}.value] - [tags.{index}] Tags of the Serverless Container Namespace - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) - -DEPRECATED ARGS: - [activate-vpc-integration] [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. + [project-id] Project ID to use. If none is passed the default project ID will be used + name Namespace name. + [description] Namespace description. + [environment-variables.{key}] Namespace environment variables. + [secret-environment-variables.{key}] Namespace secret environment variables. + [tags.{index}] A list of arbitrary tags associated with the namespace. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: -h, --help help for create diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden index fd2370904d..9232dc06ac 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-delete-usage.golden @@ -1,12 +1,14 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Delete the namespace associated with the specified ID. +It also deletes in cascade any resource inside the namespace. + +This action **cannot** be undone. USAGE: scw container namespace delete [arg=value ...] ARGS: - namespace-id UUID of the namespace to delete + namespace-id UUID of the namespace to delete. [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden index 61dff302c3..9089ab97ff 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-get-usage.golden @@ -3,10 +3,10 @@ Get the namespace associated with the specified ID. USAGE: - scw container namespace get [arg=value ...] + scw container namespace get [arg=value ...] ARGS: - namespace-id UUID of the namespace to get + namespace-id [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden index ebe9b84b64..2e3bf45677 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-list-usage.golden @@ -1,15 +1,17 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all namespaces in a specified region. +By default, the namespaces listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, and `name`. USAGE: scw container namespace list [arg=value ...] ARGS: - [order-by] Order of the namespaces (created_at_asc | created_at_desc | name_asc | name_desc) - [name] Name of the namespaces - [project-id] UUID of the Project the namespace belongs to - [organization-id] UUID of the Organization the namespace belongs to + [order-by] (created_at_asc | created_at_desc | name_asc | name_desc) + [project-id] + [name] + [organization-id] [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden index 69c74eab7a..7e82078b16 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-update-usage.golden @@ -1,18 +1,17 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Update the space associated with the specified ID. +Only fields present in the request are updated; others are left untouched. USAGE: scw container namespace update [arg=value ...] ARGS: - namespace-id UUID of the namespace to update - [environment-variables.{key}] Environment variables of the namespace to update - [description] Description of the namespace to update - [secret-environment-variables.{index}.key] - [secret-environment-variables.{index}.value] - [tags.{index}] Tags of the Serverless Container Namespace - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + namespace-id UUID of the namespace to update. + [description] Namespace description. + [environment-variables.{key}] Namespace environment variables. + [secret-environment-variables.{key}] Namespace secret environment variables. + [tags.{index}] A list of arbitrary tags associated with the namespace. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: -h, --help help for update diff --git a/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden b/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden index c3bd607e2f..89453fc2af 100644 --- a/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-namespace-usage.golden @@ -6,11 +6,11 @@ USAGE: scw container namespace AVAILABLE COMMANDS: - create Create a new namespace - delete Delete an existing namespace - get Get a namespace - list List all your namespaces - update Update an existing namespace + create Create a new namespace. + delete Delete the namespace associated with the specified ID. + get Get the namespace associated with the specified ID. + list List all namespaces the caller can access (read permission). + update Update the namespace associated with the specified ID. FLAGS: -h, --help help for namespace diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden index 7912d9f2ae..99520ae031 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-create-usage.golden @@ -1,22 +1,30 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Create a new trigger for a specified container. +Create a new trigger for the container with the specified ID. USAGE: scw container trigger create [arg=value ...] ARGS: - name Name of the trigger - container-id ID of the container to trigger - [description] Description of the trigger - [scw-sqs-config.queue] Name of the SQS queue the trigger should listen to - [scw-sqs-config.mnq-project-id] ID of the Messaging and Queuing project - [scw-sqs-config.mnq-region] Region in which the Messaging and Queuing project is activated. - [scw-nats-config.subject] Name of the NATS subject the trigger should listen to - [scw-nats-config.mnq-nats-account-id] ID of the Messaging and Queuing NATS account - [scw-nats-config.mnq-project-id] ID of the Messaging and Queuing project - [scw-nats-config.mnq-region] Region in which the Messaging and Queuing project is activated. - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + container-id ID of the container to trigger. + name Name of the trigger. + [description] Description of the trigger. + [tags.{index}] Tags of the trigger. + [destination-config.http-path] The HTTP path to send the request to (e.g., "/my-webhook-endpoint"). + [destination-config.http-method] The HTTP method to use when sending the request (e.g., get, post, put, patch, delete). Must be specified as lowercase. (unknown_http_method | get | post | put | patch | delete) + [cron-config.schedule] UNIX cron schedule to run job (e.g., "* * * * *"). + [cron-config.timezone] Timezone for the cron schedule, in tz database format (e.g., "Europe/Paris"). + [cron-config.body] Body to send to the container when the trigger is invoked. + [cron-config.headers.{key}] Additional headers to send to the container when the trigger is invoked. + [sqs-config.region] The region where the SQS queue is hosted (e.g., "fr-par", "nl-ams"). + [sqs-config.endpoint] Endpoint URL to use to access SQS (e.g., "https://sqs.mnq.fr-par.scaleway.com"). + [sqs-config.access-key-id] The access key for accessing the SQS queue. + [sqs-config.secret-access-key] The secret key for accessing the SQS queue. + [sqs-config.queue-url] The URL of the SQS queue to monitor for messages. + [nats-config.server-urls.{index}] The URLs of the NATS server (e.g., "nats://nats.mnq.fr-par.scaleway.com:4222"). + [nats-config.subject] NATS subject to subscribe to (e.g., "my-subject"). + [nats-config.credentials-file-content] The content of the NATS credentials file. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: -h, --help help for create diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden index d3dfcef12f..f2b917901d 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-delete-usage.golden @@ -1,12 +1,12 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Delete a trigger with a specified ID. +This action **cannot** be undone. USAGE: scw container trigger delete [arg=value ...] ARGS: - trigger-id ID of the trigger to delete + trigger-id ID of the trigger to delete. [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden index f5ef44631c..a007694e7b 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-get-usage.golden @@ -1,12 +1,12 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Get a trigger with a specified ID. +Get the trigger associated with the specified ID. USAGE: - scw container trigger get [arg=value ...] + scw container trigger get [arg=value ...] ARGS: - trigger-id ID of the trigger to get + trigger-id [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden index 40a20e92eb..c63c84c08d 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-list-usage.golden @@ -1,16 +1,19 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all triggers belonging to a specified Organization or Project. +By default, the triggers listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, `namespace_id`, or `container_id`. USAGE: scw container trigger list [arg=value ...] ARGS: - [order-by] Order in which to return results (created_at_asc | created_at_desc) - [container-id] ID of the container the triggers belongs to - [namespace-id] ID of the namespace the triggers belongs to - [project-id] Project ID to use. If none is passed the default project ID will be used - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) + [order-by] (created_at_asc | created_at_desc | name_asc | name_desc) + [project-id] + [namespace-id] + [container-id] + [organization-id] + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw | all) FLAGS: -h, --help help for list diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden index e8cae19d23..74f7ac8432 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-update-usage.golden @@ -1,15 +1,31 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Update a trigger with a specified ID. +When updating a trigger, you cannot specify a different source type than the one already set. +Only fields present in the request are updated; others are left untouched. USAGE: scw container trigger update [arg=value ...] ARGS: - trigger-id ID of the trigger to update - [name] Name of the trigger - [description] Description of the trigger - [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + trigger-id ID of the trigger to update. + [name] Name of the trigger. + [description] Description of the trigger. + [tags.{index}] Tags of the trigger. + [destination-config.http-path] The HTTP path to send the request to (e.g., "/my-webhook-endpoint"). + [destination-config.http-method] The HTTP method to use when sending the request (e.g., get, post, put, patch, delete). Must be specified as lowercase. (unknown_http_method | get | post | put | patch | delete) + [cron-config.schedule] UNIX cron schedule to run job (e.g., "* * * * *"). + [cron-config.timezone] Timezone for the cron schedule, in tz database format (e.g., "Europe/Paris"). + [cron-config.body] Body to send to the container when the trigger is invoked. + [cron-config.headers.{key}] Additional headers to send to the container when the trigger is invoked. + [sqs-config.region] The region where the SQS queue is hosted (e.g., "fr-par", "nl-ams"). + [sqs-config.endpoint] Endpoint URL to use to access SQS (e.g., "https://sqs.mnq.fr-par.scaleway.com"). + [sqs-config.access-key-id] The access key for accessing the SQS queue. + [sqs-config.secret-access-key] The secret key for accessing the SQS queue. + [sqs-config.queue-url] The URL of the SQS queue to monitor for messages. + [nats-config.server-urls.{index}] The URLs of the NATS server (e.g., "nats://nats.mnq.fr-par.scaleway.com:4222"). + [nats-config.subject] NATS subject to subscribe to (e.g., "my-subject"). + [nats-config.credentials-file-content] The content of the NATS credentials file. + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) FLAGS: -h, --help help for update diff --git a/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden b/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden index eb130b7e6e..084e691476 100644 --- a/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-trigger-usage.golden @@ -6,11 +6,11 @@ USAGE: scw container trigger AVAILABLE COMMANDS: - create Create a trigger - delete Delete a trigger - get Get a trigger - list List all triggers - update Update a trigger + create Create a new trigger for the container with the specified ID. + delete Delete the trigger associated with the specified ID. + get Get the trigger associated with the specified ID. + list List all triggers the caller can access (read permission). + update Update the trigger associated with the specified ID. FLAGS: -h, --help help for trigger diff --git a/cmd/scw/testdata/test-all-usage-container-usage.golden b/cmd/scw/testdata/test-all-usage-container-usage.golden index 17a501cf82..76f18f557c 100644 --- a/cmd/scw/testdata/test-all-usage-container-usage.golden +++ b/cmd/scw/testdata/test-all-usage-container-usage.golden @@ -1,16 +1,14 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -This API allows you to manage your Serverless Containers. +Easily run containers on the cloud with a single command. USAGE: scw container AVAILABLE COMMANDS: container Container management commands - cron Cron management commands domain Domain management commands namespace Namespace management commands - token Token management commands trigger Trigger management commands WORKFLOW COMMANDS: diff --git a/cmd/scw/testdata/test-main-usage-usage.golden b/cmd/scw/testdata/test-main-usage-usage.golden index 7f6098b0c8..5fe7f85dc3 100644 --- a/cmd/scw/testdata/test-main-usage-usage.golden +++ b/cmd/scw/testdata/test-main-usage-usage.golden @@ -74,7 +74,7 @@ SECURITY COMMANDS: secret Secret Manager API SERVERLESS COMMANDS: - container This API allows you to manage your Serverless Containers + container Easily run containers on the cloud with a single command function Function as a Service API jobs This API allows you to manage your Serverless Jobs diff --git a/commands/commands.go b/commands/commands.go index c62623bb70..94b6951fee 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -14,7 +14,7 @@ import ( block "github.com/scaleway/scaleway-cli/v2/internal/namespaces/block/v1alpha1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/cockpit/v1" configNamespace "github.com/scaleway/scaleway-cli/v2/internal/namespaces/config" - container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1" datalab "github.com/scaleway/scaleway-cli/v2/internal/namespaces/datalab/v1beta1" datawarehouse "github.com/scaleway/scaleway-cli/v2/internal/namespaces/datawarehouse/v1beta1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/dedibox/v1" diff --git a/docs/commands/container.md b/docs/commands/container.md index a12feb36ef..8cf6c17bd1 100644 --- a/docs/commands/container.md +++ b/docs/commands/container.md @@ -1,43 +1,33 @@ # Documentation for `scw container` -This API allows you to manage your Serverless Containers. +Easily run containers on the cloud with a single command. - [Container management commands](#container-management-commands) - - [Create a new container](#create-a-new-container) - - [Delete a container](#delete-a-container) - - [Deploy a container](#deploy-a-container) - - [Get a container](#get-a-container) - - [List all your containers](#list-all-your-containers) - - [Update an existing container](#update-an-existing-container) -- [Cron management commands](#cron-management-commands) - - [Create a new cron](#create-a-new-cron) - - [Delete an existing cron](#delete-an-existing-cron) - - [Get a cron](#get-a-cron) - - [List all your crons](#list-all-your-crons) - - [Update an existing cron](#update-an-existing-cron) + - [Create a new container in a namespace.](#create-a-new-container-in-a-namespace.) + - [Delete the container associated with the specified ID.](#delete-the-container-associated-with-the-specified-id.) + - [Get the container associated with the specified ID.](#get-the-container-associated-with-the-specified-id.) + - [List all containers the caller can access (read permission).](#list-all-containers-the-caller-can-access-(read-permission).) + - [Redeploy a container](#redeploy-a-container) + - [Update the container associated with the specified ID.](#update-the-container-associated-with-the-specified-id.) - [Deploy a container](#deploy-a-container) - [Domain management commands](#domain-management-commands) - - [Create a custom domain](#create-a-custom-domain) - - [Delete a custom domain](#delete-a-custom-domain) - - [Get a custom domain](#get-a-custom-domain) - - [List all custom domains](#list-all-custom-domains) + - [Create a new custom domain for the container with the specified ID.](#create-a-new-custom-domain-for-the-container-with-the-specified-id.) + - [Delete the custom domain associated with the specified ID.](#delete-the-custom-domain-associated-with-the-specified-id.) + - [Get the custom domain associated with the specified ID.](#get-the-custom-domain-associated-with-the-specified-id.) + - [List all custom domains the caller can access (read permission).](#list-all-custom-domains-the-caller-can-access-(read-permission).) + - [Update the domain associated with the specified ID.](#update-the-domain-associated-with-the-specified-id.) - [Namespace management commands](#namespace-management-commands) - - [Create a new namespace](#create-a-new-namespace) - - [Delete an existing namespace](#delete-an-existing-namespace) - - [Get a namespace](#get-a-namespace) - - [List all your namespaces](#list-all-your-namespaces) - - [Update an existing namespace](#update-an-existing-namespace) -- [Token management commands](#token-management-commands) - - [Create a new revocable token](#create-a-new-revocable-token) - - [Delete a token](#delete-a-token) - - [Get a token](#get-a-token) - - [List all tokens](#list-all-tokens) + - [Create a new namespace.](#create-a-new-namespace.) + - [Delete the namespace associated with the specified ID.](#delete-the-namespace-associated-with-the-specified-id.) + - [Get the namespace associated with the specified ID.](#get-the-namespace-associated-with-the-specified-id.) + - [List all namespaces the caller can access (read permission).](#list-all-namespaces-the-caller-can-access-(read-permission).) + - [Update the namespace associated with the specified ID.](#update-the-namespace-associated-with-the-specified-id.) - [Trigger management commands](#trigger-management-commands) - - [Create a trigger](#create-a-trigger) - - [Delete a trigger](#delete-a-trigger) - - [Get a trigger](#get-a-trigger) - - [List all triggers](#list-all-triggers) - - [Update a trigger](#update-a-trigger) + - [Create a new trigger for the container with the specified ID.](#create-a-new-trigger-for-the-container-with-the-specified-id.) + - [Delete the trigger associated with the specified ID.](#delete-the-trigger-associated-with-the-specified-id.) + - [Get the trigger associated with the specified ID.](#get-the-trigger-associated-with-the-specified-id.) + - [List all triggers the caller can access (read permission).](#list-all-triggers-the-caller-can-access-(read-permission).) + - [Update the trigger associated with the specified ID.](#update-the-trigger-associated-with-the-specified-id.) ## Container management commands @@ -45,12 +35,9 @@ This API allows you to manage your Serverless Containers. Container management commands. -### Create a new container +### Create a new container in a namespace. -Create a new container in the specified region. - -When creating a container, the `created` status is no longer used. The deployment process is started -and the status is set to `pending` accordingly. +Name must be unique inside the given namespace. **Usage:** @@ -63,72 +50,52 @@ scw container container create [arg=value ...] | Name | | Description | |------|---|-------------| -| namespace-id | | UUID of the namespace the container belongs to | -| name | | Name of the container | -| environment-variables.{key} | | Environment variables of the container | -| min-scale | | Minimum number of instances to scale the container to | -| max-scale | | Maximum number of instances to scale the container to | -| memory-limit | | Memory limit of the container in MB | -| cpu-limit | | CPU limit of the container in mvCPU | -| timeout | | Processing time limit for the container | -| privacy | One of: `unknown_privacy`, `public`, `private` | Privacy setting of the container | -| description | | Description of the container | -| registry-image | | Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). | -| ~~max-concurrency~~ | Deprecated | Number of maximum concurrent executions of the container | -| protocol | One of: `unknown_protocol`, `http1`, `h2c` | Protocol the container uses | -| port | | Port the container listens on | -| secret-environment-variables.{index}.key | | | -| secret-environment-variables.{index}.value | | | -| http-option | Default: `enabled`
One of: `unknown_http_option`, `enabled`, `redirected` | Configure how HTTP and HTTPS requests are handled | -| sandbox | One of: `unknown_sandbox`, `v1`, `v2` | Execution environment of the container | -| local-storage-limit | | Local storage limit of the container (in MB) | -| scaling-option.concurrent-requests-threshold | | | -| scaling-option.cpu-usage-threshold | | | -| scaling-option.memory-usage-threshold | | | -| health-check.http.path | | Path to use for the HTTP health check. | -| health-check.failure-threshold | | Number of consecutive health check failures before considering the container unhealthy. | -| health-check.interval | | Period between health checks. | -| tags.{index} | | Tags of the Serverless Container | +| namespace-id | Required | Unique ID of the namespace the container belongs to. | +| name | Required | Container name. | +| environment-variables.{key} | | Environment variables of the container. | +| secret-environment-variables.{key} | | Secret environment variables of the container. | +| min-scale | | Minimum number of instances to scale the container to. | +| max-scale | | Maximum number of instances to scale the container to. | +| memory-limit-bytes | | Memory limit of the container in bytes. | +| mvcpu-limit | | CPU limit of the container in mvCPU. | +| timeout | | Processing time limit for the container. | +| privacy | Default: `public`
One of: `unknown_privacy`, `public`, `private` | Privacy policy of the container. | +| description | | Container description. | +| image | Required | Image reference (e.g. "rg.fr-par.scw.cloud/my-registry-namespace/image:tag"). | +| protocol | Default: `http1`
One of: `unknown_protocol`, `http1`, `h2c` | Protocol the container uses. | +| port | Default: `8080` | Port the container listens on. | +| https-connections-only | Default: `false` | If true, it will allow only HTTPS connections to access your container to prevent it from being triggered by insecure connections (HTTP). | +| sandbox | Default: `v2`
One of: `unknown_sandbox`, `v1`, `v2` | Execution environment of the container. | +| local-storage-limit-bytes | | Local storage limit of the container (in bytes). | +| scaling-option.concurrent-requests-threshold | | Scale depending on the number of concurrent requests being processed per container instance. The threshold value is the number of concurrent requests above which the container will be scaled up. | +| scaling-option.cpu-usage-threshold | | Scale depending on the CPU usage of a container instance. The threshold value is the percentage of CPU usage above which the container will be scaled up. | +| scaling-option.memory-usage-threshold | | Scale depending on the memory usage of a container instance. The threshold value is the percentage of memory usage above which the container will be scaled up. | +| liveness-probe.failure-threshold | | Number of consecutive failures before considering the container as unhealthy | +| liveness-probe.interval | | Time interval between checks. | +| liveness-probe.timeout | | Duration before the check times out. | +| liveness-probe.http.path | | HTTP path to perform the check on. | +| startup-probe.failure-threshold | | Number of consecutive failures before considering the container as unhealthy | +| startup-probe.interval | | Time interval between checks. | +| startup-probe.timeout | | Duration before the check times out. | +| startup-probe.http.path | | HTTP path to perform the check on. | +| tags.{index} | | Tags of the Serverless Container. | | private-network-id | | ID of the Private Network the container is connected to. | | command.{index} | | Container command | | args.{index} | | Container arguments | -| deploy | Default: `true` | Deploy container after creation | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | - - - -### Delete a container - -Delete the container associated with the specified ID. - -**Usage:** - -``` -scw container container delete [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| container-id | Required | UUID of the container to delete | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Deploy a container - -Deploy a container associated with the specified ID. +### Delete the container associated with the specified ID. -Since updating a container now always deploys it (and passes its status to `pending`), this call becomes superfluous. +It also deletes in cascade any resource linked to the container (crons, tokens, etc.). -Moreover, calling `DeployContainer` immediately after `UpdateContainer` can cause `409 - resource is in a transient state` errors, so it is better to not use it when updating a container. +This action **cannot** be undone. **Usage:** ``` -scw container container deploy [arg=value ...] +scw container container delete [arg=value ...] ``` @@ -136,19 +103,19 @@ scw container container deploy [arg=value ...] | Name | | Description | |------|---|-------------| -| container-id | Required | UUID of the container to deploy | +| container-id | Required | UUID of the container to delete. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Get a container +### Get the container associated with the specified ID. Get the container associated with the specified ID. **Usage:** ``` -scw container container get [arg=value ...] +scw container container get [arg=value ...] ``` @@ -156,14 +123,16 @@ scw container container get [arg=value ...] | Name | | Description | |------|---|-------------| -| container-id | Required | UUID of the container to get | +| container-id | Required | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### List all your containers +### List all containers the caller can access (read permission). -List all containers for a specified region. +By default, the containers listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, and `name`. **Usage:** @@ -176,27 +145,25 @@ scw container container list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order of the containers | -| namespace-id | | UUID of the namespace the container belongs to | -| name | | Name of the container | -| project-id | | UUID of the Project the container belongs to | -| organization-id | | UUID of the Organization the container belongs to | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | | +| project-id | | | +| namespace-id | | | +| name | | | +| organization-id | | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | -### Update an existing container - -Update the container associated with the specified ID. +### Redeploy a container -When updating a container, the container is automatically redeployed to apply the changes. - -Warning: The `redeploy` field has been deprecated. An update now always redeploys the container. +Performs a rollout of the container by creating new instances with the latest image version and terminating the old instances. +When using mutable registry image references (e.g. `my-registry-namespace/image:tag`), this endpoint can be used to force the container to use +the most recent image version available in the registry. **Usage:** ``` -scw container container update [arg=value ...] +scw container container redeploy [arg=value ...] ``` @@ -204,136 +171,19 @@ scw container container update [arg=value ...] | Name | | Description | |------|---|-------------| -| container-id | Required | UUID of the container to update | -| environment-variables.{key} | | Environment variables of the container | -| min-scale | | Minimum number of instances to scale the container to | -| max-scale | | Maximum number of instances to scale the container to | -| memory-limit | | Memory limit of the container in MB | -| cpu-limit | | CPU limit of the container in mvCPU | -| timeout | | Processing time limit for the container | -| ~~redeploy~~ | Deprecated | Defines whether to redeploy failed containers | -| privacy | One of: `unknown_privacy`, `public`, `private` | Privacy settings of the container | -| description | | Description of the container | -| registry-image | | Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag"). | -| ~~max-concurrency~~ | Deprecated | Number of maximum concurrent executions of the container | -| protocol | One of: `unknown_protocol`, `http1`, `h2c` | Protocol the container uses | -| port | | Port the container listens on | -| secret-environment-variables.{index}.key | | | -| secret-environment-variables.{index}.value | | | -| http-option | One of: `unknown_http_option`, `enabled`, `redirected` | Configure how HTTP and HTTPS requests are handled | -| sandbox | One of: `unknown_sandbox`, `v1`, `v2` | Execution environment of the container | -| local-storage-limit | | Local storage limit of the container (in MB) | -| scaling-option.concurrent-requests-threshold | | | -| scaling-option.cpu-usage-threshold | | | -| scaling-option.memory-usage-threshold | | | -| health-check.http.path | | Path to use for the HTTP health check. | -| health-check.failure-threshold | | Number of consecutive health check failures before considering the container unhealthy. | -| health-check.interval | | Period between health checks. | -| tags.{index} | | Tags of the Serverless Container | -| private-network-id | | ID of the Private Network the container is connected to. | -| command.{index} | | Container command | -| args.{index} | | Container arguments | +| container-id | Required | ID of the container to redeploy. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -## Cron management commands - -Cron management commands. +### Update the container associated with the specified ID. - -### Create a new cron - -Create a new cron. +Only fields present in the request are updated; others are left untouched. **Usage:** ``` -scw container cron create [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| container-id | | UUID of the container to invoke by the cron | -| schedule | | UNIX cron schedule | -| args | | Arguments to pass with the cron | -| name | | Name of the cron to create | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | - - - -### Delete an existing cron - -Delete the cron associated with the specified ID. - -**Usage:** - -``` -scw container cron delete [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| cron-id | Required | UUID of the cron to delete | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | - - - -### Get a cron - -Get the cron associated with the specified ID. - -**Usage:** - -``` -scw container cron get [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| cron-id | Required | UUID of the cron to get | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | - - - -### List all your crons - -List all your crons. - -**Usage:** - -``` -scw container cron list [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc` | Order of the crons | -| container-id | | UUID of the container invoked by the cron | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | - - - -### Update an existing cron - -Update the cron associated with the specified ID. - -**Usage:** - -``` -scw container cron update [arg=value ...] +scw container container update [arg=value ...] ``` @@ -341,11 +191,37 @@ scw container cron update [arg=value ...] | Name | | Description | |------|---|-------------| -| cron-id | Required | UUID of the cron to update | -| container-id | | UUID of the container invoked by the cron | -| schedule | | UNIX cron schedule | -| args | | Arguments to pass with the cron | -| name | | Name of the cron | +| container-id | Required | UUID of the container to update. | +| environment-variables.{key} | | Environment variables of the container. | +| secret-environment-variables.{key} | | Secret environment variables of the container. | +| min-scale | | Minimum number of instances to scale the container to. | +| max-scale | | Maximum number of instances to scale the container to. | +| memory-limit-bytes | | Memory limit of the container in bytes. | +| mvcpu-limit | | CPU limit of the container in mvCPU. | +| timeout | | Processing time limit for the container. | +| privacy | One of: `unknown_privacy`, `public`, `private` | Privacy policy of the container. | +| description | | Container description. | +| image | | Image reference (e.g. "rg.fr-par.scw.cloud/my-registry-namespace/image:tag"). | +| protocol | One of: `unknown_protocol`, `http1`, `h2c` | Protocol the container uses. | +| port | | Port the container listens on. | +| https-connection-only | | If true, it will allow only HTTPS connections to access your container to prevent it from being triggered by insecure connections (HTTP). | +| sandbox | One of: `unknown_sandbox`, `v1`, `v2` | Execution environment of the container. | +| local-storage-limit-bytes | | Local storage limit of the container (in bytes). | +| scaling-option.concurrent-requests-threshold | | Scale depending on the number of concurrent requests being processed per container instance. The threshold value is the number of concurrent requests above which the container will be scaled up. | +| scaling-option.cpu-usage-threshold | | Scale depending on the CPU usage of a container instance. The threshold value is the percentage of CPU usage above which the container will be scaled up. | +| scaling-option.memory-usage-threshold | | Scale depending on the memory usage of a container instance. The threshold value is the percentage of memory usage above which the container will be scaled up. | +| liveness-probe.failure-threshold | | Number of consecutive failures before considering the container as unhealthy | +| liveness-probe.interval | | Time interval between checks. | +| liveness-probe.timeout | | Duration before the check times out. | +| liveness-probe.http.path | | HTTP path to perform the check on. | +| startup-probe.failure-threshold | | | +| startup-probe.interval | | | +| startup-probe.timeout | | | +| startup-probe.http.path | | | +| tags.{index} | | Tags of the Serverless Container. | +| private-network-id | | ID of the Private Network the container is connected to. | +| command.{index} | | Container command | +| args.{index} | | Container arguments | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -386,9 +262,9 @@ scw container deploy [arg=value ...] Domain management commands. -### Create a custom domain +### Create a new custom domain for the container with the specified ID. -Create a custom domain for the container with the specified ID. +Create a new custom domain for the container with the specified ID. **Usage:** @@ -401,15 +277,16 @@ scw container domain create [arg=value ...] | Name | | Description | |------|---|-------------| -| hostname | | Domain to assign | -| container-id | | UUID of the container to assign the domain to | +| container-id | Required | Unique ID of the container the domain will be assigned to. | +| hostname | Required | Domain assigned to the container. | +| tags.{index} | | A list of arbitrary tags associated with the domain. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Delete a custom domain +### Delete the custom domain associated with the specified ID. -Delete the custom domain with the specific ID. +Delete the custom domain associated with the specified ID. **Usage:** @@ -422,19 +299,19 @@ scw container domain delete [arg=value ...] | Name | | Description | |------|---|-------------| -| domain-id | Required | UUID of the domain to delete | +| domain-id | Required | UUID of the domain to delete. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Get a custom domain +### Get the custom domain associated with the specified ID. -Get a custom domain for the container with the specified ID. +Get the custom domain associated with the specified ID. **Usage:** ``` -scw container domain get [arg=value ...] +scw container domain get [arg=value ...] ``` @@ -442,14 +319,16 @@ scw container domain get [arg=value ...] | Name | | Description | |------|---|-------------| -| domain-id | Required | UUID of the domain to get | +| domain-id | Required | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### List all custom domains +### List all custom domains the caller can access (read permission). -List all custom domains in a specified region. +By default, the custom domains listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter the output, such as `organization_id`, `project_id`, `namespace_id`, or `container_id`. **Usage:** @@ -462,25 +341,23 @@ scw container domain list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc`, `hostname_asc`, `hostname_desc` | Order of the domains | -| container-id | | UUID of the container the domain belongs to | +| order-by | One of: `created_at_asc`, `created_at_desc`, `hostname_asc`, `hostname_desc` | | +| project-id | | | +| namespace-id | | | +| container-id | | | +| organization-id | | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | -## Namespace management commands - -Namespace management commands. - - -### Create a new namespace +### Update the domain associated with the specified ID. -Create a new namespace in a specified region. +Only fields present in the request are updated; others are left untouched. **Usage:** ``` -scw container namespace create [arg=value ...] +scw container domain update [arg=value ...] ``` @@ -488,46 +365,25 @@ scw container namespace create [arg=value ...] | Name | | Description | |------|---|-------------| -| name | Default: `` | Name of the namespace to create | -| environment-variables.{key} | | Environment variables of the namespace to create | -| project-id | | Project ID to use. If none is passed the default project ID will be used | -| description | | Description of the namespace to create | -| secret-environment-variables.{index}.key | | | -| secret-environment-variables.{index}.value | | | -| tags.{index} | | Tags of the Serverless Container Namespace | -| ~~activate-vpc-integration~~ | Deprecated | [DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC. | +| domain-id | Required | UUID of the domain to update. | +| tags.{index} | | A list of arbitrary tags associated with the domain. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Delete an existing namespace - -Delete the namespace associated with the specified ID. - -**Usage:** - -``` -scw container namespace delete [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| namespace-id | Required | UUID of the namespace to delete | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | +## Namespace management commands +Namespace management commands. -### Get a namespace +### Create a new namespace. -Get the namespace associated with the specified ID. +Namespace name must be unique inside a project. **Usage:** ``` -scw container namespace get [arg=value ...] +scw container namespace create [arg=value ...] ``` @@ -535,42 +391,26 @@ scw container namespace get [arg=value ...] | Name | | Description | |------|---|-------------| -| namespace-id | Required | UUID of the namespace to get | +| project-id | | Project ID to use. If none is passed the default project ID will be used | +| name | Required | Namespace name. | +| description | | Namespace description. | +| environment-variables.{key} | | Namespace environment variables. | +| secret-environment-variables.{key} | | Namespace secret environment variables. | +| tags.{index} | | A list of arbitrary tags associated with the namespace. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### List all your namespaces - -List all namespaces in a specified region. - -**Usage:** - -``` -scw container namespace list [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | Order of the namespaces | -| name | | Name of the namespaces | -| project-id | | UUID of the Project the namespace belongs to | -| organization-id | | UUID of the Organization the namespace belongs to | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | +### Delete the namespace associated with the specified ID. +It also deletes in cascade any resource inside the namespace. - -### Update an existing namespace - -Update the space associated with the specified ID. +This action **cannot** be undone. **Usage:** ``` -scw container namespace update [arg=value ...] +scw container namespace delete [arg=value ...] ``` @@ -578,29 +418,19 @@ scw container namespace update [arg=value ...] | Name | | Description | |------|---|-------------| -| namespace-id | Required | UUID of the namespace to update | -| environment-variables.{key} | | Environment variables of the namespace to update | -| description | | Description of the namespace to update | -| secret-environment-variables.{index}.key | | | -| secret-environment-variables.{index}.value | | | -| tags.{index} | | Tags of the Serverless Container Namespace | +| namespace-id | Required | UUID of the namespace to delete. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -## Token management commands - -Token management commands. +### Get the namespace associated with the specified ID. - -### Create a new revocable token - -Deprecated in favor of IAM authentication. +Get the namespace associated with the specified ID. **Usage:** ``` -scw container token create [arg=value ...] +scw container namespace get [arg=value ...] ``` @@ -608,42 +438,21 @@ scw container token create [arg=value ...] | Name | | Description | |------|---|-------------| -| container-id | | UUID of the container to create the token for | -| namespace-id | | UUID of the namespace to create the token for | -| description | | Description of the token | -| expires-at | | Expiry date of the token | +| namespace-id | Required | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Delete a token - -Delete a token with a specified ID. - -**Usage:** - -``` -scw container token delete [arg=value ...] -``` - - -**Args:** - -| Name | | Description | -|------|---|-------------| -| token-id | Required | UUID of the token to delete | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | +### List all namespaces the caller can access (read permission). +By default, the namespaces listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. - -### Get a token - -Get a token with a specified ID. +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, and `name`. **Usage:** ``` -scw container token get [arg=value ...] +scw container namespace list [arg=value ...] ``` @@ -651,19 +460,22 @@ scw container token get [arg=value ...] | Name | | Description | |------|---|-------------| -| token-id | Required | UUID of the token to get | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | | +| project-id | | | +| name | | | +| organization-id | | | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | -### List all tokens +### Update the namespace associated with the specified ID. -List all tokens belonging to a specified Organization or Project. +Only fields present in the request are updated; others are left untouched. **Usage:** ``` -scw container token list [arg=value ...] +scw container namespace update [arg=value ...] ``` @@ -671,10 +483,12 @@ scw container token list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc` | Order of the tokens | -| container-id | | UUID of the container the token belongs to | -| namespace-id | | UUID of the namespace the token belongs to | -| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | +| namespace-id | Required | UUID of the namespace to update. | +| description | | Namespace description. | +| environment-variables.{key} | | Namespace environment variables. | +| secret-environment-variables.{key} | | Namespace secret environment variables. | +| tags.{index} | | A list of arbitrary tags associated with the namespace. | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | @@ -683,9 +497,9 @@ scw container token list [arg=value ...] Trigger management commands. -### Create a trigger +### Create a new trigger for the container with the specified ID. -Create a new trigger for a specified container. +Create a new trigger for the container with the specified ID. **Usage:** @@ -698,23 +512,31 @@ scw container trigger create [arg=value ...] | Name | | Description | |------|---|-------------| -| name | Required | Name of the trigger | -| container-id | Required | ID of the container to trigger | -| description | | Description of the trigger | -| scw-sqs-config.queue | | Name of the SQS queue the trigger should listen to | -| scw-sqs-config.mnq-project-id | | ID of the Messaging and Queuing project | -| scw-sqs-config.mnq-region | | Region in which the Messaging and Queuing project is activated. | -| scw-nats-config.subject | | Name of the NATS subject the trigger should listen to | -| scw-nats-config.mnq-nats-account-id | | ID of the Messaging and Queuing NATS account | -| scw-nats-config.mnq-project-id | | ID of the Messaging and Queuing project | -| scw-nats-config.mnq-region | | Region in which the Messaging and Queuing project is activated. | +| container-id | Required | ID of the container to trigger. | +| name | Required | Name of the trigger. | +| description | | Description of the trigger. | +| tags.{index} | | Tags of the trigger. | +| destination-config.http-path | | The HTTP path to send the request to (e.g., "/my-webhook-endpoint"). | +| destination-config.http-method | One of: `unknown_http_method`, `get`, `post`, `put`, `patch`, `delete` | The HTTP method to use when sending the request (e.g., get, post, put, patch, delete). Must be specified as lowercase. | +| cron-config.schedule | | UNIX cron schedule to run job (e.g., "* * * * *"). | +| cron-config.timezone | | Timezone for the cron schedule, in tz database format (e.g., "Europe/Paris"). | +| cron-config.body | | Body to send to the container when the trigger is invoked. | +| cron-config.headers.{key} | | Additional headers to send to the container when the trigger is invoked. | +| sqs-config.region | | The region where the SQS queue is hosted (e.g., "fr-par", "nl-ams"). | +| sqs-config.endpoint | | Endpoint URL to use to access SQS (e.g., "https://sqs.mnq.fr-par.scaleway.com"). | +| sqs-config.access-key-id | | The access key for accessing the SQS queue. | +| sqs-config.secret-access-key | | The secret key for accessing the SQS queue. | +| sqs-config.queue-url | | The URL of the SQS queue to monitor for messages. | +| nats-config.server-urls.{index} | | The URLs of the NATS server (e.g., "nats://nats.mnq.fr-par.scaleway.com:4222"). | +| nats-config.subject | | NATS subject to subscribe to (e.g., "my-subject"). | +| nats-config.credentials-file-content | | The content of the NATS credentials file. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Delete a trigger +### Delete the trigger associated with the specified ID. -Delete a trigger with a specified ID. +This action **cannot** be undone. **Usage:** @@ -727,19 +549,19 @@ scw container trigger delete [arg=value ...] | Name | | Description | |------|---|-------------| -| trigger-id | Required | ID of the trigger to delete | +| trigger-id | Required | ID of the trigger to delete. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### Get a trigger +### Get the trigger associated with the specified ID. -Get a trigger with a specified ID. +Get the trigger associated with the specified ID. **Usage:** ``` -scw container trigger get [arg=value ...] +scw container trigger get [arg=value ...] ``` @@ -747,14 +569,16 @@ scw container trigger get [arg=value ...] | Name | | Description | |------|---|-------------| -| trigger-id | Required | ID of the trigger to get | +| trigger-id | Required | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | -### List all triggers +### List all triggers the caller can access (read permission). -List all triggers belonging to a specified Organization or Project. +By default, the triggers listed are ordered by creation date in ascending order. This can be modified via the `order_by` field. + +Additional parameters can be set in the query to filter, such as `organization_id`, `project_id`, `namespace_id`, or `container_id`. **Usage:** @@ -767,17 +591,19 @@ scw container trigger list [arg=value ...] | Name | | Description | |------|---|-------------| -| order-by | One of: `created_at_asc`, `created_at_desc` | Order in which to return results | -| container-id | | ID of the container the triggers belongs to | -| namespace-id | | ID of the namespace the triggers belongs to | -| project-id | | Project ID to use. If none is passed the default project ID will be used | +| order-by | One of: `created_at_asc`, `created_at_desc`, `name_asc`, `name_desc` | | +| project-id | | | +| namespace-id | | | +| container-id | | | +| organization-id | | | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw`, `all` | Region to target. If none is passed will use default region from the config | -### Update a trigger +### Update the trigger associated with the specified ID. -Update a trigger with a specified ID. +When updating a trigger, you cannot specify a different source type than the one already set. +Only fields present in the request are updated; others are left untouched. **Usage:** @@ -790,9 +616,24 @@ scw container trigger update [arg=value ...] | Name | | Description | |------|---|-------------| -| trigger-id | Required | ID of the trigger to update | -| name | | Name of the trigger | -| description | | Description of the trigger | +| trigger-id | Required | ID of the trigger to update. | +| name | | Name of the trigger. | +| description | | Description of the trigger. | +| tags.{index} | | Tags of the trigger. | +| destination-config.http-path | | The HTTP path to send the request to (e.g., "/my-webhook-endpoint"). | +| destination-config.http-method | One of: `unknown_http_method`, `get`, `post`, `put`, `patch`, `delete` | The HTTP method to use when sending the request (e.g., get, post, put, patch, delete). Must be specified as lowercase. | +| cron-config.schedule | | UNIX cron schedule to run job (e.g., "* * * * *"). | +| cron-config.timezone | | Timezone for the cron schedule, in tz database format (e.g., "Europe/Paris"). | +| cron-config.body | | Body to send to the container when the trigger is invoked. | +| cron-config.headers.{key} | | Additional headers to send to the container when the trigger is invoked. | +| sqs-config.region | | The region where the SQS queue is hosted (e.g., "fr-par", "nl-ams"). | +| sqs-config.endpoint | | Endpoint URL to use to access SQS (e.g., "https://sqs.mnq.fr-par.scaleway.com"). | +| sqs-config.access-key-id | | The access key for accessing the SQS queue. | +| sqs-config.secret-access-key | | The secret key for accessing the SQS queue. | +| sqs-config.queue-url | | The URL of the SQS queue to monitor for messages. | +| nats-config.server-urls.{index} | | The URLs of the NATS server (e.g., "nats://nats.mnq.fr-par.scaleway.com:4222"). | +| nats-config.subject | | NATS subject to subscribe to (e.g., "my-subject"). | +| nats-config.credentials-file-content | | The content of the NATS credentials file. | | region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | diff --git a/internal/namespaces/container/v1beta1/custom.go b/internal/namespaces/container/v1/custom.go similarity index 75% rename from internal/namespaces/container/v1beta1/custom.go rename to internal/namespaces/container/v1/custom.go index a4a80e7612..59704e2604 100644 --- a/internal/namespaces/container/v1beta1/custom.go +++ b/internal/namespaces/container/v1/custom.go @@ -3,7 +3,7 @@ package container import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" ) func GetCommands() *core.Commands { @@ -20,11 +20,15 @@ func GetCommands() *core.Commands { human.EnumMarshalFunc(containerStatusMarshalSpecs), ) human.RegisterMarshalerFunc( - container.CronStatus(""), - human.EnumMarshalFunc(cronStatusMarshalSpecs), + container.DomainStatus(""), + human.EnumMarshalFunc(domainStatusMarshalSpecs), + ) + human.RegisterMarshalerFunc( + container.TriggerStatus(""), + human.EnumMarshalFunc(triggerStatusMarshalSpecs), ) - cmds.MustFind("container", "container", "deploy").Override(containerContainerDeployBuilder) + cmds.MustFind("container", "container", "redeploy").Override(containerContainerRedeployBuilder) cmds.MustFind("container", "container", "create").Override(containerContainerCreateBuilder) cmds.MustFind("container", "container", "update").Override(containerContainerUpdateBuilder) cmds.MustFind("container", "namespace", "create").Override(containerNamespaceCreateBuilder) diff --git a/internal/namespaces/container/v1/custom_container.go b/internal/namespaces/container/v1/custom_container.go new file mode 100644 index 0000000000..0d8c22bfff --- /dev/null +++ b/internal/namespaces/container/v1/custom_container.go @@ -0,0 +1,59 @@ +package container + +import ( + "context" + "time" + + "github.com/fatih/color" + "github.com/scaleway/scaleway-cli/v2/core" + "github.com/scaleway/scaleway-cli/v2/core/human" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" +) + +var ( + containerDeployTimeout = 12*time.Minute + 30*time.Second + + containerStatusMarshalSpecs = human.EnumMarshalSpecs{ + container.ContainerStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.ContainerStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.ContainerStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.ContainerStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.ContainerStatusLocking: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.ContainerStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, + container.ContainerStatusUnknownStatus: &human.EnumMarshalSpec{Attribute: color.Faint}, + container.ContainerStatusUpdating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.ContainerStatusUpgrading: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + } +) + +func waitForContainer(ctx context.Context, _, respI any) (any, error) { + c := respI.(*container.Container) + + client := core.ExtractClient(ctx) + api := container.NewAPI(client) + + return api.WaitForContainer(&container.WaitForContainerRequest{ + ContainerID: c.ID, + Region: c.Region, + Timeout: new(containerDeployTimeout), + RetryInterval: core.DefaultRetryInterval, + }) +} + +func containerContainerRedeployBuilder(command *core.Command) *core.Command { + command.WaitFunc = waitForContainer + + return command +} + +func containerContainerCreateBuilder(command *core.Command) *core.Command { + command.WaitFunc = waitForContainer + + return command +} + +func containerContainerUpdateBuilder(command *core.Command) *core.Command { + command.WaitFunc = waitForContainer + + return command +} diff --git a/internal/namespaces/container/v1beta1/custom_container_test.go b/internal/namespaces/container/v1/custom_container_test.go similarity index 84% rename from internal/namespaces/container/v1beta1/custom_container_test.go rename to internal/namespaces/container/v1/custom_container_test.go index 182de60797..46e348aa66 100644 --- a/internal/namespaces/container/v1beta1/custom_container_test.go +++ b/internal/namespaces/container/v1/custom_container_test.go @@ -5,15 +5,18 @@ import ( "testing" "github.com/scaleway/scaleway-cli/v2/core" - container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1" + container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/registry/v1" "github.com/scaleway/scaleway-cli/v2/internal/testhelpers" - containerSDK "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + containerSDK "github.com/scaleway/scaleway-sdk-go/api/container/v1" "github.com/stretchr/testify/assert" ) func createNamespace(metaKey string) core.BeforeFunc { - return core.ExecStoreBeforeCmd(metaKey, "scw container namespace create -w") + return core.ExecStoreBeforeCmd( + metaKey, + fmt.Sprintf("scw container namespace create name=%s -w", core.GetRandomName("ns")), + ) } func deleteNamespace(metaKey string) core.AfterFunc { @@ -31,14 +34,14 @@ func Test_CreateContainer(t *testing.T) { createNamespace("Namespace"), ), Cmd: fmt.Sprintf( - "scw container container create namespace-id={{ .Namespace.ID }} name=%s deploy=true", + "scw container container create namespace-id={{ .Namespace.ID }} name=%s image=hello-world:latest", core.GetRandomName("test"), ), Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { t.Helper() c := ctx.Result.(*containerSDK.Container) - assert.Equal(t, containerSDK.ContainerStatusPending, c.Status) + assert.Equal(t, containerSDK.ContainerStatusCreating, c.Status) }, core.TestCheckExitCode(0), core.TestCheckGolden(), @@ -56,18 +59,21 @@ func Test_UpdateContainer(t *testing.T) { BeforeFunc: core.BeforeFuncCombine( createNamespace("Namespace"), core.ExecStoreBeforeCmd("Container", fmt.Sprintf( - "scw container container create namespace-id={{ .Namespace.ID }} name=%s deploy=true -w", + "scw container container create namespace-id={{ .Namespace.ID }} name=%s image=nginx:latest port=80 -w", core.GetRandomName("test"), )), ), - Cmd: "scw container container update {{ .Container.ID }} tags.0=new_tag port=80 cpu-limit=1500", + Cmd: "scw container container update {{ .Container.ID }} tags.0=new_tag port=8080 mvcpu-limit=1500", Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { t.Helper() - c := ctx.Result.(*containerSDK.Container) - assert.Equal(t, []string{"new_tag"}, c.Tags) - assert.Equal(t, uint32(80), c.Port, "unexpected port number") - assert.Equal(t, uint32(1500), c.CPULimit, "unexpected CPU limit") + if c, ok := ctx.Result.(*containerSDK.Container); ok { + assert.Equal(t, []string{"new_tag"}, c.Tags) + assert.Equal(t, uint32(8080), c.Port, "unexpected port number") + assert.Equal(t, uint32(1500), c.MvcpuLimit, "unexpected CPU limit") + } else { + t.Fail() + } }, core.TestCheckExitCode(0), core.TestCheckGolden(), @@ -116,7 +122,7 @@ func Test_UpdateContainer(t *testing.T) { ), createNamespace(containerNamespaceMetaKey), core.ExecStoreBeforeCmd(containerMetaKey, fmt.Sprintf( - "scw container container create namespace-id={{ .%s.ID }} name=%s registry-image={{ .%s }} port=80 deploy=true -w", + "scw container container create namespace-id={{ .%s.ID }} name=%s image={{ .%s }} port=80 -w", containerNamespaceMetaKey, core.GetRandomName("test"), lighttpdImageMetaKey, @@ -124,7 +130,7 @@ func Test_UpdateContainer(t *testing.T) { // NB: after this step, the container with the sebp/lighttpd image will deploy but stay in error state because it has no content to serve ), Cmd: fmt.Sprintf( - "scw container container update {{ .%s.ID }} registry-image={{ .%s }} port=80 redeploy=true -w", + "scw container container update {{ .%s.ID }} image={{ .%s }} port=80 -w", containerMetaKey, nginxImageMetaKey, ), @@ -134,7 +140,7 @@ func Test_UpdateContainer(t *testing.T) { c := ctx.Result.(*containerSDK.Container) // Check image expectedImageName := ctx.Meta.Render(fmt.Sprintf("{{ .%s }}", nginxImageMetaKey)) - assert.Equal(t, expectedImageName, c.RegistryImage) + assert.Equal(t, expectedImageName, c.Image) // Check status assert.Equal(t, containerSDK.ContainerStatusReady, c.Status) }, diff --git a/internal/namespaces/container/v1beta1/custom_deploy.go b/internal/namespaces/container/v1/custom_deploy.go similarity index 81% rename from internal/namespaces/container/v1beta1/custom_deploy.go rename to internal/namespaces/container/v1/custom_deploy.go index 935902af1f..f29ce2a890 100644 --- a/internal/namespaces/container/v1beta1/custom_deploy.go +++ b/internal/namespaces/container/v1/custom_deploy.go @@ -16,7 +16,7 @@ import ( pack "github.com/buildpacks/pack/pkg/client" "github.com/buildpacks/pack/pkg/logging" - dockertypes "github.com/docker/docker/api/types" + "github.com/docker/docker/api/types/build" "github.com/docker/docker/api/types/image" dockerregistry "github.com/docker/docker/api/types/registry" docker "github.com/docker/docker/client" @@ -24,10 +24,10 @@ import ( "github.com/fatih/color" "github.com/moby/go-archive" "github.com/scaleway/scaleway-cli/v2/core" - "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1/getorcreate" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1/getorcreate" "github.com/scaleway/scaleway-cli/v2/internal/tasks" "github.com/scaleway/scaleway-cli/v2/internal/terminal" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" "github.com/scaleway/scaleway-sdk-go/api/registry/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -148,7 +148,7 @@ func containerDeployRun(ctx context.Context, argsI any) (i any, e error) { tasks.Add(actions, "Creating namespace", DeployStepCreateNamespace) } - tasks.Add(actions, "Fetch or create image registry", DeployStepFetchOrCreateRegistry) + tasks.Add(actions, "Create image registry", DeployStepCreateRegistry) hasDockerfile := false if _, err := os.Stat(filepath.Join(args.BuildSource, args.Dockerfile)); err == nil { @@ -164,7 +164,6 @@ func containerDeployRun(ctx context.Context, argsI any) (i any, e error) { tasks.Add(actions, "Pushing image", DeployStepPushImage) tasks.Add(actions, "Creating container", DeployStepCreateContainer) - tasks.Add(actions, "Deploying container", DeployStepDeployContainer) result, err := actions.Execute(ctx, &DeployStepData{ Client: client, @@ -175,11 +174,11 @@ func containerDeployRun(ctx context.Context, argsI any) (i any, e error) { return nil, err } - container := result.(*DeployStepDeployContainerResponse).Container + c := result.(*DeployStepCreateContainerResponse).Container return fmt.Sprintln( terminal.Style("Your application is now available at", color.FgGreen), - terminal.Style("https://"+container.DomainName, color.FgGreen, color.Bold), + terminal.Style(c.PublicEndpoint, color.FgGreen, color.Bold), ), nil } @@ -233,30 +232,25 @@ type DeployStepFetchOrCreateResponse struct { RegistryEndpoint string } -func DeployStepFetchOrCreateRegistry( +func DeployStepCreateRegistry( t *tasks.Task, data *DeployStepCreateNamespaceResponse, ) (*DeployStepFetchOrCreateResponse, error) { - registryEndpoint := data.Namespace.RegistryEndpoint - if registryEndpoint == "" { - registryAPI := registry.NewAPI(data.Client) - registryNamespace, err := getorcreate.Registry( - t.Ctx, - registryAPI, - data.Args.Region, - data.Namespace.Name, - ) - if err != nil { - return nil, err - } - - registryEndpoint = registryNamespace.Endpoint + registryAPI := registry.NewAPI(data.Client) + registryNamespace, err := getorcreate.Registry( + t.Ctx, + registryAPI, + data.Args.Region, + data.Namespace.Name, + ) + if err != nil { + return nil, err } return &DeployStepFetchOrCreateResponse{ DeployStepData: data.DeployStepData, Namespace: data.Namespace, - RegistryEndpoint: registryEndpoint, + RegistryEndpoint: registryNamespace.Endpoint, }, nil } @@ -286,9 +280,10 @@ func DeployStepDockerPackImage( type DeployStepBuildImageResponse struct { *DeployStepData - Namespace *container.Namespace - Tag string - DockerClient DockerClient + Namespace *container.Namespace + RegistryEndpoint string + Tag string + DockerClient DockerClient } func DeployStepDockerBuildImage( @@ -306,11 +301,12 @@ func DeployStepDockerBuildImage( if err != nil { return nil, fmt.Errorf("could not connect to Docker: %w", err) } + defer dockerClient.Close() imageBuildResponse, err := dockerClient.ImageBuild( t.Ctx, data.Tar, - dockertypes.ImageBuildOptions{ + build.ImageBuildOptions{ Dockerfile: data.Args.Dockerfile, Tags: []string{tag}, NoCache: !data.Args.Cache, @@ -347,10 +343,11 @@ func DeployStepDockerBuildImage( } return &DeployStepBuildImageResponse{ - DeployStepData: data.DeployStepData, - Namespace: data.Namespace, - Tag: tag, - DockerClient: dockerClient, + DeployStepData: data.DeployStepData, + Namespace: data.Namespace, + RegistryEndpoint: data.RegistryEndpoint, + Tag: tag, + DockerClient: dockerClient, }, nil } @@ -407,7 +404,7 @@ func DeployStepPushImage( accessKey, _ := data.Client.GetAccessKey() secretKey, _ := data.Client.GetSecretKey() authConfig := dockerregistry.AuthConfig{ - ServerAddress: data.Namespace.RegistryEndpoint, + ServerAddress: data.RegistryEndpoint, Username: accessKey, Password: secretKey, } @@ -467,22 +464,13 @@ func DeployStepCreateContainer( data.Args.Region, data.Namespace.ID, data.Args.Name, + data.Tag, + data.Args.Port, ) if err != nil { return nil, fmt.Errorf("could not get or create container: %w", err) } - _, err = data.API.UpdateContainer(&container.UpdateContainerRequest{ - Region: data.Args.Region, - ContainerID: targetContainer.ID, - RegistryImage: &data.Tag, - Port: new(data.Args.Port), - Redeploy: new(false), - }, scw.WithContext(t.Ctx)) - if err != nil { - return nil, fmt.Errorf("could not update container: %w", err) - } - targetContainer, err = data.API.WaitForContainer(&container.WaitForContainerRequest{ Region: data.Args.Region, ContainerID: targetContainer.ID, @@ -498,36 +486,3 @@ func DeployStepCreateContainer( Container: targetContainer, }, nil } - -type DeployStepDeployContainerResponse struct { - *DeployStepData - Container *container.Container -} - -func DeployStepDeployContainer( - t *tasks.Task, - data *DeployStepCreateContainerResponse, -) (*DeployStepDeployContainerResponse, error) { - targetContainer, err := data.API.DeployContainer(&container.DeployContainerRequest{ - Region: data.Args.Region, - ContainerID: data.Container.ID, - }, scw.WithContext(t.Ctx)) - if err != nil { - return nil, fmt.Errorf("could not deploy container: %w", err) - } - - targetContainer, err = data.API.WaitForContainer(&container.WaitForContainerRequest{ - Region: data.Args.Region, - ContainerID: targetContainer.ID, - Timeout: new(12*time.Minute + 30*time.Second), - RetryInterval: core.DefaultRetryInterval, - }, scw.WithContext(t.Ctx)) - if err != nil { - return nil, fmt.Errorf("failed to deploy container: %w", err) - } - - return &DeployStepDeployContainerResponse{ - DeployStepData: data.DeployStepData, - Container: targetContainer, - }, nil -} diff --git a/internal/namespaces/container/v1beta1/custom_deploy_disabled.go b/internal/namespaces/container/v1/custom_deploy_disabled.go similarity index 100% rename from internal/namespaces/container/v1beta1/custom_deploy_disabled.go rename to internal/namespaces/container/v1/custom_deploy_disabled.go diff --git a/internal/namespaces/container/v1beta1/custom_deploy_helpers.go b/internal/namespaces/container/v1/custom_deploy_helpers.go similarity index 100% rename from internal/namespaces/container/v1beta1/custom_deploy_helpers.go rename to internal/namespaces/container/v1/custom_deploy_helpers.go diff --git a/internal/namespaces/container/v1beta1/custom_deploy_test.go b/internal/namespaces/container/v1/custom_deploy_test.go similarity index 96% rename from internal/namespaces/container/v1beta1/custom_deploy_test.go rename to internal/namespaces/container/v1/custom_deploy_test.go index 909f4bc304..ef07338172 100644 --- a/internal/namespaces/container/v1beta1/custom_deploy_test.go +++ b/internal/namespaces/container/v1/custom_deploy_test.go @@ -9,9 +9,9 @@ import ( "testing" "github.com/scaleway/scaleway-cli/v2/core" - container "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1beta1" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/container/v1" registrycmds "github.com/scaleway/scaleway-cli/v2/internal/namespaces/registry/v1" - containerSDK "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + containerSDK "github.com/scaleway/scaleway-sdk-go/api/container/v1" registrySDK "github.com/scaleway/scaleway-sdk-go/api/registry/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -106,8 +106,8 @@ func Test_Deploy(t *testing.T) { core.TestCheckExitCode(0), ), AfterFunc: core.AfterFuncCombine( - testDeleteContainersNamespaceAfter(appName+"-fp"), - testDeleteRegistryAfter(appName+"-fp"), + testDeleteContainersNamespaceAfter("app-"+appName+"-fp"), + testDeleteRegistryAfter("app-"+appName+"-fp"), ), DisableParallel: true, })) diff --git a/internal/namespaces/container/v1/custom_domain.go b/internal/namespaces/container/v1/custom_domain.go new file mode 100644 index 0000000000..7326105825 --- /dev/null +++ b/internal/namespaces/container/v1/custom_domain.go @@ -0,0 +1,19 @@ +package container + +import ( + "github.com/fatih/color" + "github.com/scaleway/scaleway-cli/v2/core/human" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" +) + +var domainStatusMarshalSpecs = human.EnumMarshalSpecs{ + container.DomainStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.DomainStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.DomainStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.DomainStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.DomainStatusLocking: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.DomainStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, + container.DomainStatusUnknownStatus: &human.EnumMarshalSpec{Attribute: color.Faint}, + container.DomainStatusUpdating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.DomainStatusUpgrading: &human.EnumMarshalSpec{Attribute: color.FgBlue}, +} diff --git a/internal/namespaces/container/v1beta1/custom_namespace.go b/internal/namespaces/container/v1/custom_namespace.go similarity index 63% rename from internal/namespaces/container/v1beta1/custom_namespace.go rename to internal/namespaces/container/v1/custom_namespace.go index 774c897da7..d889501ef6 100644 --- a/internal/namespaces/container/v1beta1/custom_namespace.go +++ b/internal/namespaces/container/v1/custom_namespace.go @@ -7,20 +7,22 @@ import ( "github.com/fatih/color" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" ) var ( containerNamespaceActionTimeout = 5 * time.Minute namespaceStatusMarshalSpecs = human.EnumMarshalSpecs{ - container.NamespaceStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.NamespaceStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.NamespaceStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.NamespaceStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.NamespaceStatusPending: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.NamespaceStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, - container.NamespaceStatusUnknown: &human.EnumMarshalSpec{Attribute: color.Faint}, + container.NamespaceStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.NamespaceStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.NamespaceStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.NamespaceStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.NamespaceStatusLocking: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.NamespaceStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, + container.NamespaceStatusUpdating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.NamespaceStatusUpgrading: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.NamespaceStatusUnknownStatus: &human.EnumMarshalSpec{Attribute: color.Faint}, } ) @@ -73,5 +75,7 @@ func containerNamespaceDeleteBuilder(c *core.Command) *core.Command { return nil, nil } + c.ArgSpecs.GetByName("namespace-id").Positional = true + return c } diff --git a/internal/namespaces/container/v1/custom_trigger.go b/internal/namespaces/container/v1/custom_trigger.go new file mode 100644 index 0000000000..f85c697bbe --- /dev/null +++ b/internal/namespaces/container/v1/custom_trigger.go @@ -0,0 +1,19 @@ +package container + +import ( + "github.com/fatih/color" + "github.com/scaleway/scaleway-cli/v2/core/human" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" +) + +var triggerStatusMarshalSpecs = human.EnumMarshalSpecs{ + container.TriggerStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.TriggerStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.TriggerStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.TriggerStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, + container.TriggerStatusLocking: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.TriggerStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, + container.TriggerStatusUnknownStatus: &human.EnumMarshalSpec{Attribute: color.Faint}, + container.TriggerStatusUpdating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, + container.TriggerStatusUpgrading: &human.EnumMarshalSpec{Attribute: color.FgBlue}, +} diff --git a/internal/namespaces/container/v1beta1/getorcreate/getorcreate.go b/internal/namespaces/container/v1/getorcreate/getorcreate.go similarity index 89% rename from internal/namespaces/container/v1beta1/getorcreate/getorcreate.go rename to internal/namespaces/container/v1/getorcreate/getorcreate.go index ddb910db7e..78760c3dd1 100644 --- a/internal/namespaces/container/v1beta1/getorcreate/getorcreate.go +++ b/internal/namespaces/container/v1/getorcreate/getorcreate.go @@ -3,7 +3,7 @@ package getorcreate import ( "context" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + "github.com/scaleway/scaleway-sdk-go/api/container/v1" "github.com/scaleway/scaleway-sdk-go/api/registry/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -62,10 +62,12 @@ func Container( region scw.Region, namespaceID string, name string, + image string, + port uint32, ) (*container.Container, error) { listContainersResponse, err := api.ListContainers(&container.ListContainersRequest{ Region: region, - NamespaceID: namespaceID, + NamespaceID: &namespaceID, Name: &name, }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { @@ -75,9 +77,9 @@ func Container( containers := listContainersResponse.Containers var matchingContainer *container.Container - for _, container := range containers { - if container.Name == name { - matchingContainer = container + for _, c := range containers { + if c.Name == name { + matchingContainer = c break } @@ -87,16 +89,18 @@ func Container( return matchingContainer, nil } - container, err := api.CreateContainer(&container.CreateContainerRequest{ + ctn, err := api.CreateContainer(&container.CreateContainerRequest{ Region: region, NamespaceID: namespaceID, Name: name, + Image: image, + Port: &port, }, scw.WithContext(ctx)) if err != nil { return nil, err } - return container, nil + return ctn, nil } func Registry( diff --git a/internal/namespaces/container/v1beta1/testdata/docker/Dockerfile b/internal/namespaces/container/v1/testdata/docker/Dockerfile similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/docker/Dockerfile rename to internal/namespaces/container/v1/testdata/docker/Dockerfile diff --git a/internal/namespaces/container/v1beta1/testdata/docker/Dockerfile.build-args b/internal/namespaces/container/v1/testdata/docker/Dockerfile.build-args similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/docker/Dockerfile.build-args rename to internal/namespaces/container/v1/testdata/docker/Dockerfile.build-args diff --git a/internal/namespaces/container/v1beta1/testdata/docker/index.html b/internal/namespaces/container/v1/testdata/docker/index.html similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/docker/index.html rename to internal/namespaces/container/v1/testdata/docker/index.html diff --git a/internal/namespaces/container/v1beta1/testdata/node/index.js b/internal/namespaces/container/v1/testdata/node/index.js similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/node/index.js rename to internal/namespaces/container/v1/testdata/node/index.js diff --git a/internal/namespaces/container/v1beta1/testdata/node/package-lock.json b/internal/namespaces/container/v1/testdata/node/package-lock.json similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/node/package-lock.json rename to internal/namespaces/container/v1/testdata/node/package-lock.json diff --git a/internal/namespaces/container/v1beta1/testdata/node/package.json b/internal/namespaces/container/v1/testdata/node/package.json similarity index 100% rename from internal/namespaces/container/v1beta1/testdata/node/package.json rename to internal/namespaces/container/v1/testdata/node/package.json diff --git a/internal/namespaces/container/v1/testdata/test-create-container-simple.cassette.yaml b/internal/namespaces/container/v1/testdata/test-create-container-simple.cassette.yaml new file mode 100644 index 0000000000..62a03daacd --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-create-container-simple.cassette.yaml @@ -0,0 +1,217 @@ +--- +version: 1 +interactions: +- request: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb225452-613a-42b4-9253-1f5ef9c5f286 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/64d85c7b-113e-456c-bab6-f39424869bc8 + method: GET + response: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c9ec9df-4112-4b87-b36b-e015c475355e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/64d85c7b-113e-456c-bab6-f39424869bc8 + method: GET + response: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:24.075840Z", + "region":"fr-par"}' + headers: + Content-Length: + - "404" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6044e121-b5a7-4c36-8201-3ab1f66030b8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7cc0b1e1-21ee-42f2-bc38-8e4f806faa8b", "name":"cli-test-wizardly-hugle", + "namespace_id":"64d85c7b-113e-456c-bab6-f39424869bc8", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:40.482292Z", "updated_at":"2026-04-20T10:56:40.482292Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"hello-world:latest", "protocol":"http1", + "port":8080, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinspensivekilby64d85c7b-cli-test-wizardly-hugle.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"7cc0b1e1-21ee-42f2-bc38-8e4f806faa8b", "name":"cli-test-wizardly-hugle", + "namespace_id":"64d85c7b-113e-456c-bab6-f39424869bc8", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:40.482292Z", "updated_at":"2026-04-20T10:56:40.482292Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"hello-world:latest", "protocol":"http1", + "port":8080, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinspensivekilby64d85c7b-cli-test-wizardly-hugle.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "925" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f967babe-c208-4c5b-9240-58f5e496c746 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:40.828337Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/64d85c7b-113e-456c-bab6-f39424869bc8 + method: DELETE + response: + body: '{"id":"64d85c7b-113e-456c-bab6-f39424869bc8", "name":"cli-ns-pensive-kilby", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:24.075840Z", "updated_at":"2026-04-20T10:56:40.828337Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8ab2a3f-5712-4428-be89-130b6488866c + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-create-container-simple.golden b/internal/namespaces/container/v1/testdata/test-create-container-simple.golden new file mode 100644 index 0000000000..f542324453 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-create-container-simple.golden @@ -0,0 +1,68 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID 7cc0b1e1-21ee-42f2-bc38-8e4f806faa8b +Name cli-test-wizardly-hugle +NamespaceID 64d85c7b-113e-456c-bab6-f39424869bc8 +Description - +Status creating +CreatedAt few seconds ago +UpdatedAt few seconds ago +MinScale 0 +MaxScale 5 +MemoryLimitBytes 2.0 GB +MvcpuLimit 1000 +LocalStorageLimitBytes 1.0 GB +Timeout 5 minutes +Privacy public +Image hello-world:latest +Protocol http1 +Port 8080 +HTTPSConnectionsOnly false +Sandbox v2 +ScalingOption.ConcurrentRequestsThreshold 50 +LivenessProbe.FailureThreshold 30 +LivenessProbe.Interval 10 seconds +LivenessProbe.Timeout 1 seconds +PublicEndpoint https://clinspensivekilby64d85c7b-cli-test-wizardly-hugle.functions.fnc.fr-par.scw.cloud +Region fr-par +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "id": "7cc0b1e1-21ee-42f2-bc38-8e4f806faa8b", + "name": "cli-test-wizardly-hugle", + "namespace_id": "64d85c7b-113e-456c-bab6-f39424869bc8", + "description": "", + "status": "creating", + "error_message": null, + "created_at": "1970-01-01T00:00:00.0Z", + "updated_at": "1970-01-01T00:00:00.0Z", + "environment_variables": {}, + "secret_environment_variables": {}, + "min_scale": 0, + "max_scale": 5, + "memory_limit_bytes": 2048000000, + "mvcpu_limit": 1000, + "local_storage_limit_bytes": 1000000000, + "timeout": "300.000000000s", + "privacy": "public", + "image": "hello-world:latest", + "protocol": "http1", + "port": 8080, + "https_connections_only": false, + "sandbox": "v2", + "scaling_option": { + "concurrent_requests_threshold": 50 + }, + "liveness_probe": { + "failure_threshold": 30, + "interval": "10.000000000s", + "timeout": "1.000000000s", + "tcp": {} + }, + "startup_probe": null, + "tags": [], + "private_network_id": null, + "command": [], + "args": [], + "public_endpoint": "https://clinspensivekilby64d85c7b-cli-test-wizardly-hugle.functions.fnc.fr-par.scw.cloud", + "region": "fr-par" +} diff --git a/internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml b/internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml new file mode 100644 index 0000000000..6cb212d8ff --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml @@ -0,0 +1,795 @@ +--- +version: 1 +interactions: +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "839" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b2e73766-36c6-419c-b4eb-ac1a1c6f7f62 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 560dd703-77c3-434a-b94d-7e5917c8e108 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/08cac13d-386a-4481-90a0-151c0ee7e650 + method: GET + response: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd23fb79-73b0-4b3d-abb7-59606ab75957 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/08cac13d-386a-4481-90a0-151c0ee7e650 + method: GET + response: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}' + headers: + Content-Length: + - "408" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89eb7fae-aaf5-43a8-9696-4a7dcf79987c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df31abe2-1d5e-48e1-ad80-14e0678a587a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":0, "created_at":"2026-04-20T11:04:46.747614807Z", "updated_at":"2026-04-20T11:04:46.747614807Z", + "image_count":0, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":0, "created_at":"2026-04-20T11:04:46.747614807Z", "updated_at":"2026-04-20T11:04:46.747614807Z", + "image_count":0, "region":"fr-par"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9517958d-860e-4f5e-a0a4-bce463cd2d8b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/_ping + method: HEAD + response: + body: "" + headers: + Api-Version: + - "1.54" + Builder-Version: + - "2" + Cache-Control: + - no-cache, no-store, must-revalidate + Content-Length: + - "0" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Pragma: + - no-cache + Server: + - Docker/29.3.0 (linux) + Swarm: + - inactive + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 128b9541e8f4\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:128b9541e8f4049bff9157a34f9100835fd23878a9cd35c85713a229582dafeb\"}}\r\n{\"stream\":\"Successfully + built 128b9541e8f4\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" + form: {} + headers: + Content-Type: + - application/x-tar + X-Registry-Config: + - bnVsbA== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Fapp-cli-t-ctnr-deploy-fp%2Fapp-cli-t-ctnr-deploy-fp%3Alatest + method: POST + response: + body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 128b9541e8f4\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:128b9541e8f4049bff9157a34f9100835fd23878a9cd35c85713a229582dafeb\"}}\r\n{\"stream\":\"Successfully + built 128b9541e8f4\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":492544,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1967616,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3933696,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7417344,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1233920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2085888,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3343360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4593152,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5445120,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6715904,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8845824,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10123776,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10975744,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11827712,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13105664,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13952512,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15667200,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16942592,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17797632,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19078656,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20770816,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22458368,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24148360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25860608,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27550936,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29248000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30920704,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32607744,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34295296,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35990016,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37679616,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40205312,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183296,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1377280,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2757632,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":494592,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1444864,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2156544,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3443712,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4328448,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5704704,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6589440,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8167936,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"latest: + digest: sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97\",\"Size\":2407}}\r\n" + form: {} + headers: + Content-Type: + - application/json + X-Registry-Auth: + - eyJ1c2VybmFtZSI6IlNDVzJXSDRNOVFBQzZQV0VKU0pBIiwicGFzc3dvcmQiOiIxMTRhMDFlNi1hOTIxLTRiMjgtOTQ1ZC0zYWU3YmU4NDkyZDEiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9hcHAtY2xpLXQtY3Ruci1kZXBsb3ktZnAifQ== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp/push?tag=latest + method: POST + response: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":492544,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1967616,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3933696,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7417344,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1233920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2085888,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3343360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4593152,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5445120,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6715904,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8845824,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10123776,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10975744,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11827712,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13105664,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13952512,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15667200,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16942592,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17797632,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19078656,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20770816,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22458368,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24148360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25860608,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27550936,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29248000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30920704,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32607744,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34295296,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35990016,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37679616,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40205312,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183296,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1377280,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2757632,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":494592,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1444864,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2156544,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3443712,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4328448,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5704704,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6589440,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8167936,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"latest: + digest: sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97\",\"Size\":2407}}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:46 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"containers":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers?name=app-cli-t-ctnr-deploy-fp&namespace_id=08cac13d-386a-4481-90a0-151c0ee7e650&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"containers":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21961ce7-c012-4c1b-ab4b-205794fc1d25 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"creating", + "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:10.190067Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"creating", + "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:10.190067Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "985" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3845251e-0461-4f22-bd92-30774dbd803d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"creating", + "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:10.190067Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/b496a93e-569c-48df-b70f-90d07adeec80 + method: GET + response: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"creating", + "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:10.190067Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "985" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c17fe186-fcba-46b5-a6d0-f11d42d2a193 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:21Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/b496a93e-569c-48df-b70f-90d07adeec80 + method: GET + response: + body: '{"id":"b496a93e-569c-48df-b70f-90d07adeec80", "name":"app-cli-t-ctnr-deploy-fp", + "namespace_id":"08cac13d-386a-4481-90a0-151c0ee7e650", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:05:10.190067Z", "updated_at":"2026-04-20T11:05:21Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp/app-cli-t-ctnr-deploy-fp:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "995" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b93da6d4-f5c8-4ead-92da-930703dbdb24 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:04:30.988445Z", + "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1249" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35f51111-2c33-4ecc-b4f3-8639cc2e5d69 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:05:26.104605Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/08cac13d-386a-4481-90a0-151c0ee7e650 + method: DELETE + response: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:05:26.104605Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a66f9a0d-c94f-4ed9-b42c-1ea2a916d12c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:05:26.104605Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/08cac13d-386a-4481-90a0-151c0ee7e650 + method: GET + response: + body: '{"id":"08cac13d-386a-4481-90a0-151c0ee7e650", "name":"app-cli-t-ctnr-deploy-fp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:04:30.988445Z", "updated_at":"2026-04-20T11:05:26.104605Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77c886bb-6a98-4fc7-b9a6-b428585277ef + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"08cac13d-386a-4481-90a0-151c0ee7e650","type":"not_found"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/08cac13d-386a-4481-90a0-151c0ee7e650 + method: GET + response: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"08cac13d-386a-4481-90a0-151c0ee7e650","type":"not_found"}' + headers: + Content-Length: + - "130" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7727955b-306f-4a39-bba9-2b81056cb7b1 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"namespaces":[{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":26776297, "created_at":"2026-04-20T11:04:46.747615Z", "updated_at":"2026-04-20T11:05:09.755323Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":26776297, "created_at":"2026-04-20T11:04:46.747615Z", "updated_at":"2026-04-20T11:05:09.755323Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + headers: + Content-Length: + - "501" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a861c924-2a50-4fa3-949d-3650c060bffb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":26776297, "created_at":"2026-04-20T11:04:46.747615Z", "updated_at":"2026-04-20T11:05:42.502871967Z", + "image_count":1, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/56836227-cd65-4ce8-90f0-315b578e8507 + method: DELETE + response: + body: '{"id":"56836227-cd65-4ce8-90f0-315b578e8507", "name":"app-cli-t-ctnr-deploy-fp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/app-cli-t-ctnr-deploy-fp", "is_public":false, + "size":26776297, "created_at":"2026-04-20T11:04:46.747615Z", "updated_at":"2026-04-20T11:05:42.502871967Z", + "image_count":1, "region":"fr-par"}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8cad60d0-7734-4619-9ab9-fb87e5869fdc + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden b/internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.golden similarity index 66% rename from internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden rename to internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.golden index a6051f4aa7..fc808381f2 100644 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.golden +++ b/internal/namespaces/container/v1/testdata/test-deploy-app-name-deduced-from-path.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud +Your application is now available at https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud\n" +"Your application is now available at https://appclitctnrdeployfp08cac13d-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-build-args.cassette.yaml b/internal/namespaces/container/v1/testdata/test-deploy-build-args.cassette.yaml new file mode 100644 index 0000000000..9e94bd83d1 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-build-args.cassette.yaml @@ -0,0 +1,803 @@ +--- +version: 1 +interactions: +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "839" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b002edb4-75f3-49ae-ab3b-477b980c4a57 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65522396-f101-4707-9f4e-135f1d948cda + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/51e4198d-fd3e-4f92-b21e-32711d887d0b + method: GET + response: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:05:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dcd47b21-94e9-418e-ac71-ad275c5b136d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/51e4198d-fd3e-4f92-b21e-32711d887d0b + method: GET + response: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}' + headers: + Content-Length: + - "404" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb489ccf-00b7-47ea-a5a8-17e844010ee6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e009eaff-3f33-4862-888d-737081ac196d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":0, + "created_at":"2026-04-20T11:06:00.638967862Z", "updated_at":"2026-04-20T11:06:00.638967862Z", + "image_count":0, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":0, + "created_at":"2026-04-20T11:06:00.638967862Z", "updated_at":"2026-04-20T11:06:00.638967862Z", + "image_count":0, "region":"fr-par"}' + headers: + Content-Length: + - "458" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c60da358-4501-4147-8774-6b1b74d7f388 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/_ping + method: HEAD + response: + body: "" + headers: + Api-Version: + - "1.54" + Builder-Version: + - "2" + Cache-Control: + - no-cache, no-store, must-revalidate + Content-Length: + - "0" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Pragma: + - no-cache + Server: + - Docker/29.3.0 (linux) + Swarm: + - inactive + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e e4f2effb95da\\n\"}\r\n{\"stream\":\"Step + 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 45f1195dde6e\\n\"}\r\n{\"stream\":\"Step + 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 61385df9a23f\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:61385df9a23f24ea4a778208ee1d409a15b46d0b1473defb3742181ef0a361a4\"}}\r\n{\"stream\":\"Successfully + built 61385df9a23f\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" + form: {} + headers: + Content-Type: + - application/x-tar + X-Registry-Config: + - bnVsbA== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?buildargs=%7B%22TEST%22%3A%22thisisatest%22%7D&dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Fcli-t-ctnr-deploy-ba%2Fcli-t-ctnr-deploy-ba%3Alatest + method: POST + response: + body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e e4f2effb95da\\n\"}\r\n{\"stream\":\"Step + 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 45f1195dde6e\\n\"}\r\n{\"stream\":\"Step + 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 61385df9a23f\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:61385df9a23f24ea4a778208ee1d409a15b46d0b1473defb3742181ef0a361a4\"}}\r\n{\"stream\":\"Successfully + built 61385df9a23f\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":492544,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1869312,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":818688,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3638784,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1659904,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7417344,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2511872,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3343360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5019136,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6289920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8845824,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10549760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12253696,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13531648,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15241216,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17368576,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18645504,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20355072,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21606400,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23736320,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25860608,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27983360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29656064,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31755776,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33033728,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34721280,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36416000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38531584,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183296,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":911360,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836032,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3150848,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":396288,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1444864,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3148800,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5114880,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6982656,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"latest: + digest: sha256:72642f530ac10cbfd52b6ed5458c127098fe66b373477671e95eaa039ca30a14 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:72642f530ac10cbfd52b6ed5458c127098fe66b373477671e95eaa039ca30a14\",\"Size\":2407}}\r\n" + form: {} + headers: + Content-Type: + - application/json + X-Registry-Auth: + - eyJ1c2VybmFtZSI6IlNDVzJXSDRNOVFBQzZQV0VKU0pBIiwicGFzc3dvcmQiOiIxMTRhMDFlNi1hOTIxLTRiMjgtOTQ1ZC0zYWU3YmU4NDkyZDEiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9jbGktdC1jdG5yLWRlcGxveS1iYSJ9 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba/push?tag=latest + method: POST + response: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":492544,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1869312,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":818688,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3638784,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1659904,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7417344,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2511872,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3343360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5019136,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6289920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8845824,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10549760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12253696,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13531648,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15241216,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17368576,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18645504,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20355072,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21606400,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23736320,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25860608,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27983360,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29656064,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31755776,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33033728,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34721280,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36416000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38531584,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183296,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":911360,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836032,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3150848,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":396288,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1444864,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3148800,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5114880,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6982656,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"latest: + digest: sha256:72642f530ac10cbfd52b6ed5458c127098fe66b373477671e95eaa039ca30a14 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:72642f530ac10cbfd52b6ed5458c127098fe66b373477671e95eaa039ca30a14\",\"Size\":2407}}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:00 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"containers":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers?name=cli-t-ctnr-deploy-ba&namespace_id=51e4198d-fd3e-4f92-b21e-32711d887d0b&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"containers":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 377b25c8-5e79-4da6-aa2b-4eadec228efb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:22.969170Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:22.969170Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "966" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f9039b1-671c-4c50-a41e-8dec0ed231ce + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:22.969170Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/1389e153-ad89-45bb-930c-dfa24da24bab + method: GET + response: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:22.969170Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "966" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6d33288-611c-4636-815e-d4d5fdc007a2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:32Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/1389e153-ad89-45bb-930c-dfa24da24bab + method: GET + response: + body: '{"id":"1389e153-ad89-45bb-930c-dfa24da24bab", "name":"cli-t-ctnr-deploy-ba", + "namespace_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:06:22.969170Z", "updated_at":"2026-04-20T11:06:32Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba/cli-t-ctnr-deploy-ba:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "976" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54d45529-8b05-4dcd-b524-0cf47000fdad + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:05:43.966678Z", + "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1245" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d0ed364d-3945-4a5b-b090-1239e1d38b5c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:06:39.100214Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/51e4198d-fd3e-4f92-b21e-32711d887d0b + method: DELETE + response: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:06:39.100214Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 499b44d4-d53a-47ed-90bc-d772ea81eb56 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:06:39.100214Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/51e4198d-fd3e-4f92-b21e-32711d887d0b + method: GET + response: + body: '{"id":"51e4198d-fd3e-4f92-b21e-32711d887d0b", "name":"cli-t-ctnr-deploy-ba", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:05:43.966678Z", "updated_at":"2026-04-20T11:06:39.100214Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 465245b1-831a-448f-baac-b8df2e3fa7e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b","type":"not_found"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/51e4198d-fd3e-4f92-b21e-32711d887d0b + method: GET + response: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"51e4198d-fd3e-4f92-b21e-32711d887d0b","type":"not_found"}' + headers: + Content-Length: + - "130" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 583bf563-f711-4e8f-963a-cce473b8a003 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"namespaces":[{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":26776531, + "created_at":"2026-04-20T11:06:00.638968Z", "updated_at":"2026-04-20T11:06:22.654973Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":26776531, + "created_at":"2026-04-20T11:06:00.638968Z", "updated_at":"2026-04-20T11:06:22.654973Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + headers: + Content-Length: + - "493" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6ff60ee-d6b7-4b8d-889d-2a6a38f5d7df + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":26776531, + "created_at":"2026-04-20T11:06:00.638968Z", "updated_at":"2026-04-20T11:06:55.504377667Z", + "image_count":1, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/d529f07c-02cf-4074-8c95-5e8f632e1b1d + method: DELETE + response: + body: '{"id":"d529f07c-02cf-4074-8c95-5e8f632e1b1d", "name":"cli-t-ctnr-deploy-ba", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-ba", "is_public":false, "size":26776531, + "created_at":"2026-04-20T11:06:00.638968Z", "updated_at":"2026-04-20T11:06:55.504377667Z", + "image_count":1, "region":"fr-par"}' + headers: + Content-Length: + - "465" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c475e2c9-1023-46c6-89d7-0d216a5cdd00 + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-build-args.golden b/internal/namespaces/container/v1/testdata/test-deploy-build-args.golden new file mode 100644 index 0000000000..963d8c3b81 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-build-args.golden @@ -0,0 +1,6 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +Your application is now available at https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud + +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +"Your application is now available at https://clitctnrdeployba51e4198d-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-buildpack.cassette.yaml b/internal/namespaces/container/v1/testdata/test-deploy-buildpack.cassette.yaml new file mode 100644 index 0000000000..27968dbdb2 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-buildpack.cassette.yaml @@ -0,0 +1,3403 @@ +--- +version: 1 +interactions: +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "839" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fabe70c8-1b42-43a1-9058-b9677ce9ab2e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98fc7276-1cc1-45b6-86fb-2aa3073be2ce + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/508a1874-fa5e-4ed4-bff9-ecae159c589b + method: GET + response: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:06:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72112639-65bf-4217-b02f-873e2bc7b2b6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/508a1874-fa5e-4ed4-bff9-ecae159c589b + method: GET + response: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}' + headers: + Content-Length: + - "404" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:07:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 013a50e9-1e1e-4330-b2e2-6d222a45dfc4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:07:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ba72f25-db08-4f75-9711-299810fc69cf + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":0, + "created_at":"2026-04-20T11:07:12.223274917Z", "updated_at":"2026-04-20T11:07:12.223274917Z", + "image_count":0, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":0, + "created_at":"2026-04-20T11:07:12.223274917Z", "updated_at":"2026-04-20T11:07:12.223274917Z", + "image_count":0, "region":"fr-par"}' + headers: + Content-Length: + - "458" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:07:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4356d80b-fc2f-403c-84ec-8731b324ae62 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/_ping + method: HEAD + response: + body: "" + headers: + Api-Version: + - "1.54" + Builder-Version: + - "2" + Cache-Control: + - no-cache, no-store, must-revalidate + Content-Length: + - "0" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Mon, 20 Apr 2026 11:07:12 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Pragma: + - no-cache + Server: + - Docker/29.3.0 (linux) + Swarm: + - inactive + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"ID":"e19e7cbf-a555-4991-b8fe-f143dd98f128","Containers":24,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":22,"Images":46,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":40,"OomKillDisable":false,"NGoroutines":55,"SystemTime":"2026-04-20T13:07:12.264461127+02:00","LoggingDriver":"json-file","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.0-1012-oem","OperatingSystem":"Ubuntu 24.04.4 LTS","OSVersion":"24.04","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"IndexConfigs":{"docker.io":{"Name":"docker.io","Mirrors":[],"Secure":true,"Official":true}},"Mirrors":[]},"NCPU":16,"MemTotal":32744693760,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"lmarabese-ThinkPad-T14s-Gen-6","Labels":[],"ExperimentalBuild":false,"ServerVersion":"29.3.0","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"301b2dac98f15c27117da5c8af12118a041a31d9"},"RuncCommit":{"ID":"v1.3.4-0-gd6d73eb8"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=apparmor","name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info + method: GET + response: + body: | + {"ID":"e19e7cbf-a555-4991-b8fe-f143dd98f128","Containers":24,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":22,"Images":46,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":40,"OomKillDisable":false,"NGoroutines":55,"SystemTime":"2026-04-20T13:07:12.264461127+02:00","LoggingDriver":"json-file","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.0-1012-oem","OperatingSystem":"Ubuntu 24.04.4 LTS","OSVersion":"24.04","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"IndexConfigs":{"docker.io":{"Name":"docker.io","Mirrors":[],"Secure":true,"Official":true}},"Mirrors":[]},"NCPU":16,"MemTotal":32744693760,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"lmarabese-ThinkPad-T14s-Gen-6","Labels":[],"ExperimentalBuild":false,"ServerVersion":"29.3.0","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"301b2dac98f15c27117da5c8af12118a041a31d9"},"RuncCommit":{"ID":"v1.3.4-0-gd6d73eb8"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=apparmor","name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:07:12 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":354384,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":532480,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1054916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1613824,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1750404,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2438532,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2695168,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3126660,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3235840,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3814788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4317184,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4506372,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5194500,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5398528,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5882628,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5937226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6570564,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6477898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113900,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7018570,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7258692,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":475136,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7556554,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":819200,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7946820,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1163264,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8097226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8634948,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1507328,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8637898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9334020,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1851392,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9178314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10022148,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2321408,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9718986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2665472,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10710276,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3009536,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10259658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11397508,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3353600,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10800330,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12085700,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3697664,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11339466,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4048000,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12773764,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4392064,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11880138,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13461892,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4736128,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12420810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14150020,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5080192,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12961482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5424256,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14838148,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5768320,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13502154,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15537220,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6112384,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14042826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16225348,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6456448,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14583498,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6800512,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16926468,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15124170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7156800,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17622660,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7500864,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15664842,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18310788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7844928,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16205514,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18998916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8188992,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16738762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19686788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8533056,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17266698,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8875584,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20374916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9219648,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17807370,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21066692,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9574976,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18348042,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21754820,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9919040,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18888714,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22442948,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10263104,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19429386,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23131076,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10607168,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19970058,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23819204,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10951232,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20498954,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24507332,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25195460,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21039626,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25883588,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21580298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26571716,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22120970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27259844,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22661642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27947972,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59255,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":297960,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23740362,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28636100,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":822248,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29324228,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24281034,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1543144,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29668292,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2198504,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24808970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30012356,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2923212,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3447500,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25349642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4168396,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30700484,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954828,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31044548,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31732676,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26430986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32420804,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26971658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33108932,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27512330,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33797060,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28053002,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58923,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28582154,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7208960,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29122826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1145536,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11534336,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1866432,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29663498,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20545536,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2652864,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30204170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28475392,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3308224,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29556736,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30733194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4094656,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32800768,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55164,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31273866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4815552,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34207945,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":167298,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405376,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31814538,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":483328,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1334693,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32355210,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2186597,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32895626,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2902373,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33436298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3628197,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33976970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4283557,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34517642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65802,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4938917,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271400,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35046026,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35580298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1514752,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2246912,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36120970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2967808,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3702400,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4423296,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36661642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5354496,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6081536,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122612,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37202314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":769408,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1686912,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37742986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2342272,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2997632,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38283658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3649600,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4173888,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101474,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38819722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4695488,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":424098,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5350848,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":998754,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5744064,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1674914,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39360394,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2477090,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6134592,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6396736,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3385186,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4409122,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6658880,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5302562,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6914624,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6099234,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7176704,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7016738,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39898378,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7438848,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7934242,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8851746,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7700864,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9539874,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9994668,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7831936,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8225152,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40439050,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8749440,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40979722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9400832,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9925120,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46480,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41520394,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10580480,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11234304,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42046858,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":701312,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11758592,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1045376,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42587530,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1487744,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2028416,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43123850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2618240,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43664522,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3208064,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44205194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3859520,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48288,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44745866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4449344,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":396202,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45271178,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1330090,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2165674,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3015086,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45811850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4020654,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46347786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47849,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46888458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":746855,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47429130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1336679,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47969802,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2078733,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2766861,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48510474,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35859,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3506509,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49051146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":222884,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3998029,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":707515,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4391245,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49591818,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1488763,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4693517,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2368379,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3430651,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50116810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50657482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51738826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":315894,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52801226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1256644,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271508,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53331786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":800767,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1879236,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1594854,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2501828,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53872458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2130406,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3124420,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2916838,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3436672,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54413130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3441126,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3747968,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227558,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4065088,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5026214,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54951050,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4380160,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812646,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4691456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6874918,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5002752,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7923494,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5314048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55491722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8972070,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5625344,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10020646,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5936640,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11069222,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12117798,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6247936,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13166374,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56025930,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6559232,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14214950,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15263526,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6862272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16312102,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17372518,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18421094,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19731814,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7479232,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20780390,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21828966,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56566602,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23139686,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7790528,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24450406,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25512806,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8103104,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8414400,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57107274,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9036992,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57647946,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9970880,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":272464,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10588096,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":811008,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58188618,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11206848,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1597248,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2121536,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11821312,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58728266,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2912896,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12132608,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3709312,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12443904,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4495744,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5020032,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59268938,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12755200,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6068608,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6859209,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13066496,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7645641,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8693961,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13377792,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59809610,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9742537,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10550665,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13689088,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11599241,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12647817,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14000384,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13708617,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60350282,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14757193,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15810505,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14311680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16859081,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17921737,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18971529,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14622976,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20020105,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60890634,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21330825,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22379401,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14934272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23692297,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24755209,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25803785,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61431306,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15245568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15556864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61959242,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16179456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62499914,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52395,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16794752,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539587,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63040586,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17106048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":998339,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17417344,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1391555,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63581258,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1784771,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18046272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2309059,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64121930,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2961004,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18357568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3550828,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64647754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18668864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4195500,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4785324,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18980160,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65178314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19291456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65718986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19914048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66259658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66800074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20536640,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24944,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21164224,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":237709,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67881418,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":611367,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68422090,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21786816,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":971815,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22098112,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397799,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68962762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22407552,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1856551,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69493002,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2315303,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23036416,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70033674,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23659008,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70574346,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24281600,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71641866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24904192,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25526784,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72723210,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255662,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73263882,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778246,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26149376,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1300038,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73804554,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26454272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2086470,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74345226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26765568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2872902,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27076864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74885898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27380480,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3659334,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75424074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4440454,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27691776,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75949578,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5226886,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28003072,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6004294,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76490250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28314368,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6790726,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77030922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7577158,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28630528,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8625734,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28941824,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77571594,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9674310,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29256128,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10722886,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11776518,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29567424,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12562950,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78112266,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13349382,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14397958,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29878720,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15442182,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16491974,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78652938,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30191104,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17540550,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18589126,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19637702,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20946310,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79193610,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22257030,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23567750,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24616326,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256622,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79734282,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2088960,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3143094,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4456374,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80274954,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5504950,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6553206,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7334518,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8376694,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80811978,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9421302,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10207734,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10994166,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12042742,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314335,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13091318,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81352650,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14131638,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":642015,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15180214,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15966646,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":969695,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17015222,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1297375,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18063798,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81893322,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18850230,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1625055,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19636662,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1948288,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160950,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20685238,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2275968,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21733814,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2603648,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22514102,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82433994,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2931328,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23300534,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3259008,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24349110,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3586688,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25131382,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82970442,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3902784,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4558144,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83511114,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5213504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5868864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":318825,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6524224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1242624,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84051786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173440,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2176512,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3110400,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7828800,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8145024,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4046528,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84592458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4980416,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8800384,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5914304,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9128064,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6848192,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9455744,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85133130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7780352,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9783424,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8714240,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10111104,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85667082,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9655488,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10438784,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10586688,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10766464,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11510336,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11094144,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86207754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12444224,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11421824,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11749504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13375488,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86748426,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14309376,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12077184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15243264,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12404864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87289098,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16177152,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12720640,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17111040,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87829770,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13048320,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17736768,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18670656,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13376000,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88357514,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19604544,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13703680,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20537024,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88898186,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21474560,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14028672,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22402048,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89438858,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14341184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23335936,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89970506,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14668864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24269824,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25203712,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90511178,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14996544,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26137600,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91051850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27065856,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15324224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004672,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91592522,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15651904,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28935872,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92126602,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29869760,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15979584,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92667274,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16307264,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93207946,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16962624,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94289290,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17617984,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48159,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95370634,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":363474,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18261824,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95909578,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":908672,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18589504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1449344,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96450250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2039168,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18917184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2640960,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96990922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3146176,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19244864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3884672,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97519306,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19572544,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4621952,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98059978,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19900224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98594250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20227904,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99675594,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20883264,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22309,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100755082,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21538624,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":978624,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21857088,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101295754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1732288,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22184768,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101836426,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22824960,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102915786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23465024,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103997130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23792704,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104537802,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23658,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24446080,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105619146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24763136,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":712704,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25085760,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1400832,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106698826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1988026,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25413440,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107234378,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25741120,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107759882,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26068800,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108841226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26724160,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109922570,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27051840,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23251,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110981258,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27707200,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":270336,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":860160,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111510474,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28034880,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1580992,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2203584,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112051146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28362560,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112591818,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28690240,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113132490,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29017920,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113673162,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29345600,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114213834,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29673280,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26553,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164243,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29987712,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114747018,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":535782,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30315392,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115287690,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":863462,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30643072,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1187840,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115828362,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1679360,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30960000,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116358730,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2105344,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116899402,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117440074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118521162,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24576,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119602506,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":297846,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":892928,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120670922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1288009,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":592758,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121205194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1746761,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":887670,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121745866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2271049,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2368076,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1477494,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122286538,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2067318,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122824458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2657142,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123890058,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3541878,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4131702,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124971402,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":248663,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4732278,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":740183,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125512074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1478336,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5322102,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126052746,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2219264,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5617014,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2969088,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5911926,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126593418,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3706368,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6501750,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4443648,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5180928,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127134090,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7091574,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6162240,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7386486,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7156544,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127674762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7681398,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8139584,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7976310,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9122624,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8268799,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128215434,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10105664,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8563711,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11088704,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8858623,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12076160,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13059200,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128755466,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9153535,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14054464,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9448447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15037504,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16020544,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9743359,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129296138,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17003584,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10038271,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17983616,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10333183,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18966656,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129836810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19949696,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10628095,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20932736,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10923007,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21926848,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130377482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22909888,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11223871,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23899008,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11518783,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130916234,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12108607,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131456906,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12698431,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131983562,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13288255,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303175,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13878079,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132524170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":911170,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14179391,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1805890,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14769215,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133064778,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2395714,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15359039,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3286658,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133605450,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15956223,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4171394,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134146122,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5055874,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16546047,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16840959,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5940610,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134686794,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17135871,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6825346,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7710082,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17730495,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8594818,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18318527,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9774466,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18613439,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":391,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10954114,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18908351,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12133762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13313410,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19498175,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14493058,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19789247,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58967,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20084159,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15671234,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":368640,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16562114,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20379071,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1025935,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17148226,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1812303,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2593615,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17738050,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3308111,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20683967,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98598912,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18032962,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3706255,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":107511808,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4361615,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114196480,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18622786,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5213583,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118652928,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18917442,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20978879,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125337600,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19507202,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128122880,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21273791,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20097026,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130908160,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21568703,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20981762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132579328,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21571586,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21863615,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22158527,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22452162,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133693440,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":417792,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134762000,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23041986,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22453439,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1695744,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6946816,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23645762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11247497,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2280384,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22748351,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5520228,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23941250,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2912960,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5513090,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23043263,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5427996,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24531074,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6310042,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25120898,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23349247,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7995392,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26005634,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23644159,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12188333,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12188333,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26595458,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23939071,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9994668,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4647483,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4647483,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27192450,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4743620,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255016,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24245119,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4744829,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27782274,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24540031,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1740928,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28372098,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17367040,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834943,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2478208,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24576000,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3461248,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28971714,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30302274,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25128447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4444288,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25421503,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5680722,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25716415,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6671122,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24641536,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26156745,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7899922,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26011327,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8882962,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17301504,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255658,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26153430,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9866002,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26306239,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5219719,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2360082,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10849042,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":510913,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11829586,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26601151,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":763712,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12812626,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25221371,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13795666,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1288000,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26896063,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14789138,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1812288,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27190975,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25211784,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15772178,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2336576,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16762514,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27485887,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17504722,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20316160,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2860864,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30801920,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31223908,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18242002,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3385152,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12124160,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18979282,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27780799,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3909440,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19716562,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30413951,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20453842,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4433728,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4706315,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4706315,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28075711,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2193547,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2193547,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2289934,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2289934,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2290275,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2290275,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21191122,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4958016,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2552819,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2552819,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2368076,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21928402,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5482304,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28370623,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22663250,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6006592,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23164690,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6530880,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23901970,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7055168,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28665535,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7841600,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28960447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8628032,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9676608,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8257536,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10730176,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15925248,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22135,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11778752,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":347077,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29074475,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12827328,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":740293,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23678,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13880512,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067973,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199002,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14666880,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1428421,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23855104,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24217685,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":530639,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1687438,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15448128,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7962624,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1120463,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1916814,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14745600,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1819919,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15972416,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2047886,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21528576,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16496704,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29006089,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17541312,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5522658,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3552476,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18852032,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160896,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21471616,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23678,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24183399,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22520192,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":234935,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":223457,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":560832,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":576484,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23304896,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954048,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":904164,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24091328,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1335296,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1330148,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24617984,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1728512,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1690596,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25142272,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2121728,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2182116,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2711552,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165737,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165737,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2188255,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2188255,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53325,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2301799,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2297978,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1122304,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3495799,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2294336,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":388,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3537536,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717184,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5310656,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1004416,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2134912,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71610,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3113984,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":368640,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3526742,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3526742,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35891,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778240,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":807973,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1269760,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1688768,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1679360,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2512896,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161934,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3348480,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2571534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":262144,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3063054,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1308238,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3472718,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2356814,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3882318,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3408398,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4206158,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4198478,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4349774,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4984910,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4595534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6031950,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4841294,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1247040,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5080654,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6295310,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2233728,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2977216,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5244494,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6809486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3468736,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5326414,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7071630,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4217280,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7599566,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5490254,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954560,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8123854,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5446080,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5572174,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6429120,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8650510,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5654094,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7418432,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9174798,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5736014,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8401472,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5817934,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9384512,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9704014,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10126400,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5899854,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10863680,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10228302,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11846720,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5981774,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10490446,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12837888,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6063694,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10752590,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13820928,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14803968,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11014734,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6145614,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15787008,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11276878,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6227534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17021184,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11539022,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6309454,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18261568,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19490368,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11801166,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6391374,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20719168,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21702208,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12063310,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6469582,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22928576,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6551502,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24157376,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12325454,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6715342,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12844302,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6961102,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13368590,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6998770,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25945,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14155022,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":663552,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14941454,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1318912,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15727886,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1950282,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16249166,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":277453,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":829248,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17030478,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1376256,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17553486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2211840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18073934,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2768896,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18598222,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3325952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19122510,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3883008,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4440064,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271480,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19636558,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4990336,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19898702,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":830661,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160846,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5547392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1387717,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20422990,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6104448,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1937640,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20685134,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2216168,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6661504,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20947278,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2773224,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7218560,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21209422,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3330280,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7764672,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3887336,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21470030,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8321728,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4444392,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21732174,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5001448,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8878784,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5558504,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9157312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21994318,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6394088,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9714368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22256462,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7226472,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10271424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8062056,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22520974,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8897640,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10828288,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22783118,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9733224,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11385344,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10568808,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23045262,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11384936,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11942400,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12499048,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23307342,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12495808,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13334632,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14170216,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12774336,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15005800,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23569486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13052864,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15832040,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13331392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16946152,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13609920,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23831630,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13888448,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18060264,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14166976,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19174376,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24093774,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14445504,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20283496,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14724032,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21397608,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22511720,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15002560,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24355918,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23625832,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15279040,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24730408,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25833576,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15558784,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24618062,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15837312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16394368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24880206,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17229952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25142350,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18051840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":265164,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18887424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19723008,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1097739,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22544384,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25179824,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1654795,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20547072,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8126464,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2490379,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21382656,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":277460,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3325963,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24117248,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24246814,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21939712,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2529491,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3883019,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":825548,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22496512,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1374412,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4429003,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1931468,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4986059,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23053568,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5543115,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2488524,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23332096,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3045580,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6100171,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3599436,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6657227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23610624,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4156492,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7206411,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4992076,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23878848,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7763467,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5827660,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8320523,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24157376,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6663244,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8877579,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7220300,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9417227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8055884,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24435904,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8891468,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9974219,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9727052,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10284108,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10531211,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11119692,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24709312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11088267,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11955276,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11354059,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13069388,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14183500,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11911115,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24987840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12189643,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15297612,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12468171,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16411724,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12746699,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17525836,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18361420,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25266368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13025227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19475532,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13303755,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20581900,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13582283,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21690508,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13860811,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25544896,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22804620,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14139339,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23918732,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14417867,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25032844,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25823424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14696395,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26146956,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14974923,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26101952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15531979,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26380480,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16089035,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16633995,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8847360,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25989,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17469579,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":565248,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24772608,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26411392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18026635,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1281728,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8847360,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18583691,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1937088,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25046,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19140747,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24477696,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26730770,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19697803,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024000,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20254859,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1619968,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20811915,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2308096,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21368971,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24916,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22204555,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":497226,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23037195,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":792138,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23587851,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1250890,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1645322,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24139787,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2169610,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24975371,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2460126,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25810955,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8257536,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":527587,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22413312,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1593674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26508132,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":527279,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8552448,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2675018,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25014,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15925248,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3751946,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067951,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23887872,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":236531,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26718073,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2498110,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4828234,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1608623,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":655360,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2498108,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2460126,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1179648,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5353738,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1929984,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5894410,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2149295,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2684416,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6975754,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3225088,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8055242,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3765760,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9136586,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4306432,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97413,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4847104,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10217930,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":494495,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5387776,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":896704,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10758602,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1191616,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5928448,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11299274,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1486528,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6469120,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1879744,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11839946,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7009792,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2371264,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12374794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7539456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2862784,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12902794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3354304,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8080064,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3845824,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8615616,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13443466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4337344,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9156288,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4828864,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13984138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9696960,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5418688,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10237632,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6008512,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14513290,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10778304,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6598336,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11318976,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7188160,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15053962,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11847872,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7876288,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12388544,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8564416,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9252544,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15588106,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12929216,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13469888,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14010560,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16128778,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16669450,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15090112,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15630784,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17210122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16171456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314331,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17750794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17245952,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":943948,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17786496,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18290122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1566540,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18327168,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18830794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2189132,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18867840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2811724,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19371466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3434316,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19408512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4056908,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19912138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19948928,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4679500,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5302092,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5924684,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20489600,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20448970,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6858572,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7481164,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21030272,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8103756,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20989642,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8726348,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21570944,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9660236,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21522826,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10594124,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22111616,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11532172,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12466060,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22057098,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13412300,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22652288,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14346188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15591372,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22593418,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16532428,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17778188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23192960,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19028300,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20278924,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23134090,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21530188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23730624,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22768972,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24014156,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25259340,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23664778,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26502732,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24271296,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27747916,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28993100,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30238284,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24205450,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24811968,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25352640,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24746122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26433984,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25286794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27509888,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25827466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28050560,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1821760,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28580800,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26368138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2608192,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29109824,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3394368,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26894154,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4180800,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29650496,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5229376,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30191168,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27434826,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6272512,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7321088,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30731840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8360000,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9408576,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27975498,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10448128,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31272512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11491584,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12540160,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28508042,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13588736,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31806848,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14641536,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15690112,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16738688,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29043786,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17787264,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32341120,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18835840,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19883328,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20922880,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21971456,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29584458,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23012736,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32881792,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24053440,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25102016,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33409408,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30125130,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33950080,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30665802,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34490752,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31206474,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35031424,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319488,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35571840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":945856,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31747146,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1568448,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36112512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2506560,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32287818,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36653184,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3440448,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37193856,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32828490,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4371968,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5298816,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37734528,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33369162,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6232704,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38269504,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7166592,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33909834,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8100480,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38805056,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9034368,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9968256,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39345664,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34450506,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10902144,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11828864,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39881152,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34991178,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12762752,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13696640,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40421760,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14630528,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35531850,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15564416,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16492608,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40962432,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17426496,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36068042,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18360384,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19294272,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41503104,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20228160,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36605642,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21162048,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21784640,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42043776,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22718528,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23341120,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37146314,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23963712,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24897600,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42575424,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25517248,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26134720,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26757312,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37679306,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27691200,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43116096,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28625088,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29558976,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38219978,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43656768,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38746186,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44197440,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39286858,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39813002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44738112,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":252915,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40353674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45278784,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40880330,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1817290,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2341578,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3128010,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41421002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45819456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3914442,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4697738,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41961674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5746314,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46353344,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42502346,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6785866,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7831754,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43043018,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46894016,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8883914,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9932490,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43583690,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10981066,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12029642,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44124362,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47434688,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13084234,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13870666,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14657098,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44665034,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47975360,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15705674,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16752522,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17794698,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48516032,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45190090,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18843274,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19891850,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49056704,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20941322,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21989898,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49585920,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45725002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22776330,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23824906,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24873482,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50121728,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46265674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50662400,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46806346,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51203072,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47331466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51743744,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303104,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47856970,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52284416,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":925696,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48383114,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52809536,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1859584,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2793472,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53334976,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48923786,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3727360,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4349952,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53875584,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4975232,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49463178,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5909120,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54416256,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6843008,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7776640,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8710528,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54956928,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50003850,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9644416,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10578304,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11512192,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12440064,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13062656,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50544522,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13685248,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14930432,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15861504,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17111616,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23549,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147305,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51078218,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18045504,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":478150,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18974080,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1035206,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19597824,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1657798,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19909120,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2240128,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20537152,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21782336,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51618890,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23039808,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24284992,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25536832,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26470720,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52159562,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":780168,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27404608,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1304456,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27715904,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1833608,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28336576,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2620040,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28959168,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3406472,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29270464,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3930760,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29586560,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717192,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5241480,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29897856,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6027912,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30209152,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6814344,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7338632,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52700234,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8124424,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8910856,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9959432,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10745864,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11532296,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23508,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":281545,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12575752,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":723913,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13362184,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":888524,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13886472,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1183436,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14935048,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53240906,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1642188,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15721480,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2035404,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16507912,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17556488,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18080776,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18867208,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19915784,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24904,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20960648,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":396518,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53781578,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21747080,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":796480,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22801736,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1156928,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23583432,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1582912,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24373512,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2074432,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2372941,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25159944,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54322250,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54862922,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24899,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20898,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":716006,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303104,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1406540,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":663552,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2258508,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1089536,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1712128,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23531,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1003636,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":411,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2043520,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55354824,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20725,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1114083,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21882,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20866,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":794624,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":565248,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1417216,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1179648,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1870144,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55354814,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2465494,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7176192,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9668459,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36897,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15463,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1046098,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15400960,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59263,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":347080,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1832530,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":805832,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180603,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2520658,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30310071,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208000,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3102777,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":494532,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1285517,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16252928,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2538893,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25182669,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3652877,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4567693,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5550733,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21954560,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34610,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20898,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28835840,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30339979,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":686208,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":599925,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1308800,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1189749,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16252928,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1898624,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1632117,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165824,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25178191,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2320245,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20804,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526174,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2959029,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1112158,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1800286,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30301022,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2344458,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41004,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1087605,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2218101,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23855104,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25186659,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3206709,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":317653,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2268648,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2372941,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3892213,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":940216,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2372243,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2010734,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34159,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2340895,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1884152,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2009096,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":210625,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2086789,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2086789,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2012119,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3132344,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":450560,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3557542,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1414781,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4069880,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":745472,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5791313,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5003768,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3426815,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2011900,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2011613,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5947256,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4065022,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1384448,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6569848,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1581056,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7503736,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1777664,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34629,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8127992,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2023424,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2170880,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8750584,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110141,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2416640,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9680504,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":261090,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2662400,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":457698,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10305528,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2947706,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10928120,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":752610,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3193466,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1194978,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11550712,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1637346,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11862008,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2128866,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2816994,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12484600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3294784,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12795896,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13729784,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14352376,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14970808,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34722,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15904696,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187283,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16838584,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":523648,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17772472,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":916864,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1162624,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18395064,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1457536,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19017656,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1752448,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19640248,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1998208,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20262840,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2342272,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2686336,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20885432,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3079552,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21511736,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3419456,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22134328,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314309,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22756920,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":969669,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068216,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1625029,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2273545,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23379512,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2913737,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23690808,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3896777,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24007544,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4879817,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24630136,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5535177,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":318717,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6518217,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":638976,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25261368,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173577,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":962240,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25573880,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7828937,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1289920,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8484297,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1617600,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25885176,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9462665,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1938880,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10118025,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26196472,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2266560,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11086217,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2594240,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11741577,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2921920,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26511416,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12396937,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3241856,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13379977,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3569536,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26822712,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3897216,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14363017,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4224896,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15346057,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4552576,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27134008,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16318409,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5207936,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17301449,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5535616,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27445304,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18284489,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6190976,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19267529,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6518656,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20250569,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27756600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7174016,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21233609,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7501696,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22216649,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8157056,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23199689,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24182729,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8812416,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28067896,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25166281,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9467456,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26146185,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10122816,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27129225,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10778176,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28112265,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28379192,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29082313,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11433536,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30065353,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12088896,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31037897,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12744256,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13723904,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28686264,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14706944,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15689984,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28997560,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16673024,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319488,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17644672,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":637861,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18301248,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":966757,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29308856,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19279168,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1622117,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29620152,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20240512,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2277477,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20895872,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2932837,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21539136,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29931448,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3588197,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22194496,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4243557,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22849856,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30242744,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4898917,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23505216,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5554277,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24160576,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6537317,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14745600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24814208,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7192677,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20316160,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25459776,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7848037,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29491200,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30437039,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26115136,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3355753,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8831077,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3455234,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3455234,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25945,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26770496,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":206396,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9801738,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":499712,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10457098,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27419328,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11112458,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1652800,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27741888,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11440138,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30146560,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31204970,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2344576,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28069568,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12088842,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28724928,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13071882,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14052234,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29367232,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14694858,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29694912,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15350218,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16330570,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":248740,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30350272,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16985930,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":770048,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17641034,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1553920,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30675264,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17963146,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2340352,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18290826,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3117888,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31002944,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3892864,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18936650,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4679296,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19264330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5203584,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19580746,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5990016,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19908426,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6776448,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24576000,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7559296,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20553610,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31279585,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8345728,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21208970,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9132160,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10180736,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21864330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10967168,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":251702,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11753600,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":497850,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22509386,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12540032,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1022138,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13326464,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22837066,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1546426,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14112384,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2070714,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14898816,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23164746,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2594746,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15685248,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3119034,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16471680,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3381178,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23492426,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17242240,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3905466,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18028672,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4429754,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18815104,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954042,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19601536,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23819850,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20387968,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5740474,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6264762,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21174272,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6784698,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21960704,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7308986,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24147530,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22747136,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8095418,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23533568,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8881850,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24320000,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9668282,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10716858,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24475210,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11753210,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24802890,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12801786,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13843770,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25130570,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14889658,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15938234,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25458250,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16986810,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25785930,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18032314,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19080890,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26113610,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20129210,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26441290,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21159930,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22208506,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26768970,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23250490,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27096650,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24546042,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27424330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28079690,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28735050,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29718090,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31028810,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8192000,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23920640,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31274287,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2464320,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14155776,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21495808,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24582275,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24587200,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177,\"total\":177},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177,\"total\":177},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Digest: + sha256:968a8e1690eacf5fb124e7c0d790545bfb00d92e4c041612ce370bca5de77037\"}\r\n{\"status\":\"Status: + Downloaded newer image for paketobuildpacks/builder-jammy-base:latest\"}\r\n" + form: {} + headers: + X-Registry-Auth: + - eyJhdXRoIjoiT2c9PSJ9 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Fbuilder-jammy-base&tag=latest + method: POST + response: + body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":354384,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":532480,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1054916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1613824,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1750404,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2438532,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2695168,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3126660,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3235840,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3814788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4317184,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4506372,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5194500,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5398528,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5882628,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5937226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6570564,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6477898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113900,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7018570,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7258692,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":475136,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7556554,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":819200,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7946820,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1163264,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8097226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8634948,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1507328,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8637898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9334020,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1851392,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9178314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10022148,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2321408,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9718986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2665472,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10710276,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3009536,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10259658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11397508,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3353600,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10800330,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12085700,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3697664,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11339466,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4048000,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12773764,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4392064,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11880138,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13461892,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4736128,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12420810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14150020,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5080192,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12961482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5424256,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14838148,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5768320,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13502154,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15537220,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6112384,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14042826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16225348,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6456448,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14583498,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6800512,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16926468,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15124170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7156800,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17622660,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7500864,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15664842,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18310788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7844928,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16205514,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18998916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8188992,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16738762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19686788,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8533056,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17266698,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8875584,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20374916,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9219648,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17807370,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21066692,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9574976,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18348042,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21754820,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9919040,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18888714,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22442948,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10263104,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19429386,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23131076,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10607168,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19970058,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23819204,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10951232,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20498954,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24507332,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25195460,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21039626,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25883588,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21580298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26571716,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22120970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27259844,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22661642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27947972,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59255,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":297960,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23740362,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28636100,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":822248,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29324228,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24281034,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1543144,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29668292,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2198504,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24808970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30012356,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2923212,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3447500,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25349642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4168396,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30700484,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954828,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31044548,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25890314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31732676,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26430986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32420804,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26971658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33108932,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27512330,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33797060,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28053002,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58923,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28582154,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7208960,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29122826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1145536,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11534336,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1866432,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29663498,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20545536,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2652864,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30204170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28475392,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3308224,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29556736,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30733194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4094656,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32800768,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55164,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31273866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4815552,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34207945,\"total\":34207945},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":167298,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405376,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c5c34025956f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31814538,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":483328,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1334693,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32355210,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2186597,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32895626,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2902373,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33436298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3628197,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33976970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4283557,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34517642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65802,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4938917,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271400,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35046026,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35580298,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1514752,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2246912,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36120970,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2967808,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3702400,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4423296,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36661642,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5354496,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6081536,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122612,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37202314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":769408,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1686912,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37742986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2342272,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2997632,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38283658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3649600,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4173888,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101474,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38819722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4695488,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":424098,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5350848,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":998754,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5744064,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1674914,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39360394,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2477090,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6134592,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6396736,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3385186,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4409122,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6658880,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5302562,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6914624,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6099234,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7176704,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7016738,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39898378,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7438848,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7934242,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8851746,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7700864,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9539874,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9994668,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7831936,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8225152,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40439050,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8749440,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40979722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9400832,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9925120,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46480,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41520394,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10580480,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11234304,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42046858,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":701312,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11758592,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1045376,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42587530,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1487744,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2028416,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43123850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2618240,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43664522,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3208064,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44205194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3859520,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48288,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44745866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4449344,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":396202,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45271178,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1330090,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2165674,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3015086,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45811850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4020654,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46347786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47849,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46888458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":746855,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47429130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1336679,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47969802,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2078733,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2766861,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48510474,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35859,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3506509,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49051146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":222884,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3998029,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":707515,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4391245,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49591818,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1488763,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4693517,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2368379,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3430651,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50116810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50657482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51738826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":315894,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52801226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1256644,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271508,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53331786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":800767,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1879236,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1594854,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2501828,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53872458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2130406,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3124420,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2916838,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3436672,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54413130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3441126,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3747968,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4227558,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4065088,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5026214,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54951050,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4380160,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5812646,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4691456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6874918,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5002752,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7923494,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5314048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55491722,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8972070,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5625344,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10020646,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5936640,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11069222,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12117798,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6247936,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13166374,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56025930,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6559232,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14214950,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15263526,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6862272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16312102,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17372518,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18421094,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19731814,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7479232,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20780390,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21828966,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56566602,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23139686,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7790528,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24450406,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25512806,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8103104,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8414400,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57107274,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9036992,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57647946,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9970880,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":272464,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10588096,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":811008,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58188618,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11206848,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1597248,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2121536,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11821312,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58728266,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2912896,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12132608,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3709312,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12443904,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4495744,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5020032,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59268938,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12755200,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6068608,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6859209,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13066496,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7645641,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8693961,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13377792,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59809610,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9742537,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10550665,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13689088,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11599241,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12647817,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14000384,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13708617,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60350282,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14757193,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15810505,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14311680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16859081,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17921737,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18971529,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14622976,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20020105,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60890634,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21330825,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22379401,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14934272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23692297,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24755209,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25803785,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61431306,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15245568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15556864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61959242,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16179456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62499914,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52395,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16794752,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539587,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63040586,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17106048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":998339,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17417344,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1391555,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63581258,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1784771,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18046272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2309059,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64121930,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2961004,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18357568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3550828,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64647754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18668864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4195500,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4785324,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18980160,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65178314,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19291456,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65718986,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19914048,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66259658,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66800074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20536640,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24944,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21164224,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":237709,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67881418,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":611367,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68422090,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21786816,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":971815,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22098112,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397799,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68962762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22407552,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1856551,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69493002,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2315303,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23036416,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70033674,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23659008,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70574346,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24281600,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71641866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24904192,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25526784,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72723210,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255662,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73263882,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778246,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26149376,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1300038,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73804554,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26454272,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2086470,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74345226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26765568,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2872902,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27076864,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74885898,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27380480,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3659334,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75424074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4440454,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27691776,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75949578,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5226886,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28003072,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6004294,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76490250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28314368,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6790726,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77030922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7577158,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28630528,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8625734,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28941824,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77571594,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9674310,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29256128,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10722886,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11776518,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29567424,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12562950,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78112266,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13349382,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14397958,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29878720,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15442182,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16491974,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78652938,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30191104,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17540550,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18589126,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19637702,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20946310,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79193610,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22257030,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23567750,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24616326,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256622,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79734282,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2088960,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3143094,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4456374,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80274954,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5504950,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6553206,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7334518,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8376694,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80811978,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9421302,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10207734,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10994166,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12042742,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314335,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13091318,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81352650,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14131638,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":642015,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15180214,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15966646,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":969695,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17015222,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1297375,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18063798,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81893322,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18850230,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1625055,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19636662,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1948288,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160950,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20685238,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2275968,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21733814,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2603648,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22514102,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82433994,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2931328,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23300534,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3259008,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24349110,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3586688,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25131382,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82970442,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3902784,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4558144,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83511114,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5213504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5868864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":318825,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6524224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1242624,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84051786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173440,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2176512,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3110400,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7828800,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8145024,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4046528,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84592458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4980416,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8800384,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5914304,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9128064,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6848192,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9455744,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85133130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7780352,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9783424,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8714240,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10111104,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85667082,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9655488,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10438784,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10586688,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10766464,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11510336,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11094144,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86207754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12444224,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11421824,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11749504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13375488,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86748426,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14309376,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12077184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15243264,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12404864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87289098,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16177152,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12720640,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17111040,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87829770,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13048320,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17736768,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18670656,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13376000,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88357514,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19604544,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13703680,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20537024,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88898186,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21474560,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14028672,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22402048,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89438858,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14341184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23335936,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89970506,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14668864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24269824,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25203712,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90511178,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14996544,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26137600,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91051850,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27065856,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15324224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28004672,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91592522,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15651904,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28935872,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92126602,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29869760,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15979584,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92667274,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16307264,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93207946,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16962624,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94289290,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17617984,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48159,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95370634,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":363474,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18261824,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95909578,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":908672,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18589504,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1449344,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96450250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2039168,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18917184,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2640960,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96990922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3146176,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19244864,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3884672,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97519306,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19572544,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4621952,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98059978,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19900224,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98594250,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20227904,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99675594,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20883264,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22309,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100755082,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21538624,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":978624,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21857088,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101295754,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1732288,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22184768,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101836426,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22824960,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102915786,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23465024,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103997130,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23792704,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104537802,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23658,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24446080,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105619146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24763136,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":712704,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25085760,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1400832,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106698826,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1988026,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25413440,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107234378,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25741120,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107759882,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26068800,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108841226,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26724160,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109922570,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27051840,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23251,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110981258,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27707200,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":270336,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":860160,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111510474,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28034880,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1580992,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2203584,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112051146,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28362560,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112591818,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28690240,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113132490,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29017920,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113673162,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29345600,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114213834,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29673280,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26553,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164243,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29987712,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114747018,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":535782,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30315392,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115287690,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":863462,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30643072,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1187840,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115828362,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1679360,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30960000,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116358730,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2105344,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116899402,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117440074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118521162,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24576,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119602506,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":297846,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":892928,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120670922,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1288009,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":592758,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121205194,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1746761,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":887670,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121745866,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2271049,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2368076,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1477494,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122286538,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2067318,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122824458,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2657142,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123890058,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3541878,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4131702,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124971402,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":248663,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4732278,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":740183,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125512074,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1478336,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5322102,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126052746,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2219264,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5617014,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2969088,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5911926,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126593418,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3706368,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6501750,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4443648,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5180928,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127134090,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7091574,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6162240,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7386486,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7156544,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127674762,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7681398,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8139584,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7976310,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9122624,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8268799,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128215434,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10105664,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8563711,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11088704,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8858623,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12076160,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13059200,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128755466,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9153535,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14054464,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9448447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15037504,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16020544,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9743359,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129296138,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17003584,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10038271,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17983616,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10333183,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18966656,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129836810,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19949696,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10628095,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20932736,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10923007,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21926848,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130377482,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22909888,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11223871,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23899008,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11518783,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130916234,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12108607,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131456906,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12698431,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131983562,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13288255,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303175,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13878079,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132524170,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":911170,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14179391,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1805890,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14769215,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133064778,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2395714,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15359039,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3286658,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133605450,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15956223,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4171394,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134146122,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5055874,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16546047,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16840959,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5940610,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134686794,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17135871,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6825346,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7710082,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17730495,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8594818,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18318527,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9774466,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18613439,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":391,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10954114,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18908351,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12133762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13313410,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19498175,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14493058,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19789247,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58967,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20084159,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15671234,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":368640,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16562114,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20379071,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1025935,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17148226,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1812303,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2593615,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17738050,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3308111,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20683967,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98598912,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18032962,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3706255,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":107511808,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4361615,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114196480,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18622786,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5213583,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118652928,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18917442,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20978879,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125337600,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19507202,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128122880,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21273791,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20097026,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130908160,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21568703,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20981762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132579328,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21571586,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21863615,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22158527,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22452162,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133693440,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":417792,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134762000,\"total\":134762000},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23041986,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22453439,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1056768,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"23b2c698fb6c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":812,\"total\":812},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"cf0b79a2ebe2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":267,\"total\":267},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b981ffeba613\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1695744,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6946816,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23645762,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11247497,\"total\":11247497},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"3cac07cdc1e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2280384,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22748351,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5520228,\"total\":5520228},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"088f8070ef99\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23941250,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2912960,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5513090,\"total\":5513090},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"5628d0fe9cda\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23043263,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5427996,\"total\":5427996},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24531074,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ccfb83fdcbbe\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6310042,\"total\":6310042},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"05a85bcd2ecb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25120898,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23349247,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7995392,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26005634,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23644159,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12188333,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12188333,\"total\":12188333},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"75e6ef543e9f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26595458,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23939071,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9994668,\"total\":9994668},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dd2ec1303777\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4647483,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4647483,\"total\":4647483},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a0692abf113e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27192450,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4743620,\"total\":4743620},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"2c5b207ac10a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255016,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24245119,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4744829,\"total\":4744829},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6e1cfb6a128c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27782274,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3527820,\"total\":3527820},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"647dfc4e7be1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24540031,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1740928,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28372098,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17367040,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24834943,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2478208,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24576000,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3461248,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28971714,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30302274,\"total\":30302274},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25128447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d786d5226873\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4444288,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25421503,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5680722,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25716415,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6671122,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24641536,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26156745,\"total\":26156745},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6f7c1e92b4ee\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7899922,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26011327,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8882962,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17301504,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":255658,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26153430,\"total\":26153430},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9866002,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26306239,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"fad6e92a99b6\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5219719,\"total\":5219719},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d10da21f65ff\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2360082,\"total\":2360082},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f45d011879ad\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10849042,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":510913,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11829586,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26601151,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":763712,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12812626,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25221371,\"total\":25221371},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"370cff27492f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13795666,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1288000,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26896063,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14789138,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1812288,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27190975,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25211784,\"total\":25211784},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15772178,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"be7b0b1b2d87\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":681,\"total\":681},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f505b8ea33d3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2336576,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16762514,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27485887,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17504722,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20316160,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2860864,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30801920,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31223908,\"total\":31223908},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18242002,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"fc20ab9377f0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3385152,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12124160,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18979282,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27780799,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3909440,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19716562,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30413951,\"total\":30413951},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6060d6487ae7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20453842,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4433728,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4706315,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4706315,\"total\":4706315},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a8a61a6b553c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28075711,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2193547,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2193547,\"total\":2193547},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7250a74eeb66\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2289934,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2289934,\"total\":2289934},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"bd83622ff93f\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2290275,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2290275,\"total\":2290275},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21191122,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0c299a4ef131\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4958016,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2552819,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2552819,\"total\":2552819},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"27e349d97477\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2368076,\"total\":2368076},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"181ba257b248\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21928402,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5482304,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28370623,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22663250,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6006592,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23164690,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6530880,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23901970,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7055168,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28665535,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7841600,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28960447,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8628032,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9676608,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8257536,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10730176,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15925248,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22135,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11778752,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":347077,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29074475,\"total\":29074475},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"70ea892e6a55\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12827328,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":740293,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23678,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13880512,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067973,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199002,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14666880,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1428421,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23855104,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24217685,\"total\":24217685},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f9c162d5355a\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":530639,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1687438,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15448128,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7962624,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1120463,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1916814,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14745600,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1819919,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15972416,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2047886,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21528576,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16496704,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29006089,\"total\":29006089},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"61ea9e8823da\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":620,\"total\":620},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"86b6f45185a0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17541312,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5522658,\"total\":5522658},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c999a3e5505d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3552476,\"total\":3552476},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0a202322fe47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18852032,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160896,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21471616,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23678,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24183399,\"total\":24183399},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b38c4aa84352\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22520192,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":234935,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":223457,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":560832,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":576484,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23304896,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954048,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":904164,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24091328,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1335296,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1330148,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24617984,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1728512,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1690596,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25142272,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2121728,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2182116,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2711552,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165737,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165737,\"total\":25165737},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"42c236e2d025\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2188255,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2188255,\"total\":2188255},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a4e6fec93dd2\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53325,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2301799,\"total\":2301799},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"73a06f4fc38c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2297978,\"total\":2297978},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"bdc5dee27c4c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1122304,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3495799,\"total\":3495799},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c017149f4e14\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2294336,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":388,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3537536,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717184,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5310656,\"total\":5310656},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d182839f0ea1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6044,\"total\":6044},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35528,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"25809dd475e7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6420,\"total\":6420},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7db8a5fb74f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1004416,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2134912,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71610,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3113984,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":368640,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3526742,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3526742,\"total\":3526742},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b807b762e2bd\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35891,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778240,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":807973,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1269760,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1688768,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1679360,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2512896,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161934,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3348480,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2571534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":262144,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3063054,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1308238,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3472718,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2356814,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3882318,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3408398,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4206158,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4198478,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4349774,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4984910,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4595534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6031950,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4841294,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1247040,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5080654,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6295310,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2233728,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2977216,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5244494,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6809486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3468736,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5326414,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7071630,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4217280,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7599566,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5490254,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954560,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8123854,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5446080,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5572174,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6429120,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8650510,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5654094,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7418432,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9174798,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5736014,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8401472,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5817934,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9384512,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9704014,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10126400,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5899854,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10863680,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10228302,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11846720,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5981774,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10490446,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12837888,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6063694,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10752590,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13820928,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14803968,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11014734,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6145614,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15787008,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11276878,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6227534,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17021184,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11539022,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6309454,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18261568,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19490368,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11801166,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6391374,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20719168,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21702208,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12063310,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6469582,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22928576,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6551502,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24157376,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12325454,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6715342,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12844302,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6961102,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13368590,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6998770,\"total\":6998770},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f38fcfaf524c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25945,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14155022,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3587794,\"total\":3587794},\"id\":\"636637f89082\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"636637f89082\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":663552,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14941454,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1318912,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15727886,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1950282,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16249166,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":277453,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":829248,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17030478,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1376256,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17553486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2211840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18073934,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2768896,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18598222,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3325952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19122510,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3883008,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4440064,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":271480,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19636558,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4990336,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19898702,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":830661,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20160846,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5547392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1387717,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20422990,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6104448,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1937640,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20685134,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2216168,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6661504,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20947278,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2773224,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7218560,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21209422,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3330280,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7764672,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3887336,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21470030,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8321728,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4444392,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21732174,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5001448,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8878784,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5558504,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9157312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21994318,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6394088,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9714368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22256462,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7226472,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10271424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8062056,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22520974,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8897640,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10828288,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22783118,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9733224,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11385344,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10568808,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23045262,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11384936,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11942400,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12499048,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23307342,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12495808,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13334632,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14170216,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12774336,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15005800,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23569486,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13052864,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15832040,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13331392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16946152,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13609920,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23831630,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13888448,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18060264,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14166976,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19174376,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24093774,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14445504,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20283496,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14724032,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21397608,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22511720,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15002560,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24355918,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23625832,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15279040,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24730408,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25833576,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15558784,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24618062,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15837312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16394368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24880206,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17229952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25142350,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18051840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":265164,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18887424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19723008,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1097739,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22544384,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25179824,\"total\":25179824},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"631cec42a2eb\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1654795,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20547072,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8126464,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2490379,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21382656,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":277460,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3325963,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24117248,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24246814,\"total\":24246814},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21939712,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"db95a96b16ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2529491,\"total\":2529491},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"df8e26d35519\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3883019,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":825548,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22496512,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1374412,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4429003,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1931468,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4986059,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23053568,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5543115,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2488524,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23332096,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3045580,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6100171,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3599436,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6657227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23610624,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4156492,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7206411,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4992076,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23878848,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7763467,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5827660,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8320523,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24157376,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6663244,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8877579,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7220300,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9417227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8055884,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24435904,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8891468,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9974219,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9727052,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10284108,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10531211,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11119692,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24709312,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11088267,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11955276,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11354059,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13069388,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14183500,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11911115,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24987840,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12189643,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15297612,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12468171,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16411724,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12746699,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17525836,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18361420,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25266368,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13025227,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19475532,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13303755,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20581900,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13582283,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21690508,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13860811,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25544896,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22804620,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14139339,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23918732,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14417867,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25032844,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25823424,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14696395,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26146956,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14974923,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26101952,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15531979,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26380480,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16089035,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16633995,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8847360,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25989,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17469579,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":565248,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24772608,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26411392,\"total\":26411392},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18026635,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"8b09720f01ec\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1281728,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8847360,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18583691,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1937088,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25046,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19140747,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24477696,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26730770,\"total\":26730770},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":434176,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6d44e860d599\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19697803,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024000,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20254859,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1619968,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20811915,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2308096,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21368971,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24916,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22204555,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":497226,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23037195,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":792138,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23587851,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1250890,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1645322,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24139787,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2169610,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24975371,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2460126,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25810955,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8257536,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":527587,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22413312,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1593674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26508132,\"total\":26508132},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a4d519656d61\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":527279,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8552448,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2675018,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25014,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15925248,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3751946,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067951,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23887872,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":236531,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26718073,\"total\":26718073},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"1d51a55425f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2498110,\"total\":2498110},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"3a9dd86d04b1\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4828234,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1608623,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":655360,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2498108,\"total\":2498108},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ca805dc29d4b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2460126,\"total\":2460126},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a2a165c43e37\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":662,\"total\":662},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6e4c27556037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1179648,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5353738,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1929984,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5894410,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2149295,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2684416,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6975754,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3225088,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8055242,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3765760,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9136586,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4306432,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97413,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4847104,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10217930,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":494495,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5387776,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":896704,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10758602,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1191616,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5928448,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11299274,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1486528,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6469120,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1879744,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11839946,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7009792,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2371264,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12374794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7539456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2862784,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12902794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3354304,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8080064,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3845824,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8615616,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13443466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4337344,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9156288,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4828864,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13984138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9696960,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5418688,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10237632,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6008512,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14513290,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10778304,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6598336,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11318976,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7188160,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15053962,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11847872,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7876288,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12388544,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8564416,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9252544,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15588106,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12929216,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13469888,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14010560,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16128778,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16669450,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15090112,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15630784,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17210122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16171456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314331,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17750794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17245952,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":943948,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17786496,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18290122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1566540,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18327168,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18830794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2189132,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18867840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2811724,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19371466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3434316,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19408512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4056908,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19912138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19948928,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4679500,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5302092,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5924684,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20489600,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20448970,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6858572,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7481164,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21030272,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8103756,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20989642,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8726348,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21570944,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9660236,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21522826,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10594124,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22111616,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11532172,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12466060,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22057098,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13412300,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22652288,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14346188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15591372,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22593418,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16532428,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17778188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23192960,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19028300,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20278924,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23134090,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21530188,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23730624,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22768972,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24014156,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25259340,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23664778,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26502732,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24271296,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27747916,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28993100,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30238284,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24205450,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24811968,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25352640,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24746122,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26433984,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25286794,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27509888,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25827466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28050560,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1821760,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28580800,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26368138,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2608192,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29109824,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3394368,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26894154,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4180800,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29650496,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5229376,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30191168,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27434826,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6272512,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7321088,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30731840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8360000,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9408576,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27975498,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10448128,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31272512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11491584,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12540160,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28508042,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13588736,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31806848,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14641536,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15690112,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16738688,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29043786,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17787264,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32341120,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18835840,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19883328,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20922880,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21971456,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29584458,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23012736,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32881792,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24053440,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25102016,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33409408,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30125130,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33950080,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30665802,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34490752,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31206474,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35031424,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319488,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35571840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":945856,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31747146,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1568448,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36112512,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2506560,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32287818,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36653184,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3440448,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37193856,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32828490,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4371968,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5298816,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37734528,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33369162,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6232704,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38269504,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7166592,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33909834,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8100480,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38805056,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9034368,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9968256,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39345664,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34450506,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10902144,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11828864,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39881152,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34991178,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12762752,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13696640,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40421760,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14630528,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35531850,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15564416,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16492608,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40962432,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17426496,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36068042,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18360384,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19294272,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41503104,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20228160,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36605642,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21162048,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21784640,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42043776,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22718528,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23341120,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37146314,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23963712,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24897600,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42575424,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25517248,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26134720,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26757312,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37679306,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27691200,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43116096,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28625088,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29558976,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38219978,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43656768,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38746186,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44197440,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39286858,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39813002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44738112,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":252915,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40353674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45278784,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40880330,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1817290,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2341578,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3128010,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41421002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45819456,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3914442,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4697738,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41961674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5746314,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46353344,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42502346,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6785866,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7831754,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43043018,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46894016,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8883914,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9932490,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43583690,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10981066,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12029642,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44124362,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47434688,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13084234,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13870666,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14657098,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44665034,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47975360,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15705674,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16752522,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17794698,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48516032,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45190090,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18843274,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19891850,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49056704,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20941322,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21989898,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49585920,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45725002,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22776330,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23824906,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24873482,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50121728,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46265674,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50662400,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46806346,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51203072,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47331466,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51743744,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303104,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47856970,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52284416,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":925696,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48383114,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52809536,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1859584,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2793472,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53334976,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48923786,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3727360,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4349952,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53875584,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4975232,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49463178,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5909120,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54416256,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6843008,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7776640,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8710528,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54956928,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50003850,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9644416,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10578304,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11512192,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12440064,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13062656,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50544522,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13685248,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14930432,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15861504,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17111616,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23549,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147305,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51078218,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18045504,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":478150,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18974080,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1035206,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19597824,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1657798,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19909120,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2240128,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20537152,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21782336,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51618890,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23039808,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24284992,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25536832,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256080,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26470720,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52159562,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":780168,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27404608,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1304456,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27715904,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1833608,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28336576,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2620040,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28959168,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3406472,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29270464,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3930760,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29586560,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717192,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5241480,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29897856,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6027912,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30209152,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6814344,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7338632,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52700234,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8124424,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8910856,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9959432,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10745864,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11532296,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23508,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":281545,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12575752,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":723913,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13362184,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":888524,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13886472,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1183436,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14935048,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53240906,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1642188,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15721480,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2035404,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16507912,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17556488,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18080776,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18867208,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19915784,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24904,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20960648,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":396518,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53781578,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21747080,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":796480,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22801736,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1156928,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23583432,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1582912,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24373512,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2074432,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2372941,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25159944,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54322250,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54862922,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24899,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20898,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":716006,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":303104,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1406540,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":663552,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2258508,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1089536,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1712128,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23531,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1003636,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":411,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2043520,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55354824,\"total\":55354824},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ecbfdf3be655\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20725,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1114083,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21882,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20866,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":794624,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":565248,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1417216,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1179648,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1870144,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55354814,\"total\":55354814},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"9eb07c051b83\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2465494,\"total\":2465494},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"daecf94c8960\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7176192,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9668459,\"total\":9668459},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"aee0a78f6d34\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36897,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15463,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1046098,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15400960,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59263,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":347080,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1832530,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":805832,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180603,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2520658,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30310071,\"total\":30310071},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"e2291b754d03\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208000,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3102777,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":494532,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1285517,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16252928,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2538893,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25182669,\"total\":25182669},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6f865ac6cf47\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3652877,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4567693,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5550733,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21954560,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34610,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20898,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28835840,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30339979,\"total\":30339979},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"857b33a4cfc5\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":686208,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":599925,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1308800,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1189749,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16252928,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1898624,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1632117,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165824,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25178191,\"total\":25178191},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6866198468ef\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2320245,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20804,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526174,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2959029,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1112158,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1800286,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30301022,\"total\":30301022},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f377c7552d3e\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2344458,\"total\":2344458},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ec86a1aa68ae\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41004,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1087605,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2218101,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23855104,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25186659,\"total\":25186659},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"7f79e22d984c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3206709,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":317653,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2268648,\"total\":2268648},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"026c6dba3379\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2372941,\"total\":2372941},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d8a18e651d89\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3892213,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":940216,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2372243,\"total\":2372243},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ef9d863f2861\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2010734,\"total\":2010734},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"2ab944348f77\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34159,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2340895,\"total\":2340895},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b2a8746eb088\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":709,\"total\":709},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"e9878e9fa76c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1884152,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2009096,\"total\":2009096},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"6667aebfba65\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":210625,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2086789,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2086789,\"total\":2086789},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"75765fff5624\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2012119,\"total\":2012119},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"88e9ca39f3d4\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":807,\"total\":807},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3132344,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"dc47ccd312f3\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":450560,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3557542,\"total\":3557542},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"a7fa220dad88\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1414781,\"total\":1414781},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"818b71a3b152\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4069880,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":745472,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5791313,\"total\":5791313},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f3e833f20023\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5003768,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3426815,\"total\":3426815},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"cdcfd46e5fba\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040384,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2011900,\"total\":2011900},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"321cd18a1d3b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2011613,\"total\":2011613},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"de32848c35b8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5947256,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4065022,\"total\":4065022},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"eaa69682b498\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1384448,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6569848,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1581056,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7503736,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1777664,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34629,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8127992,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2023424,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2170880,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8750584,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110141,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2416640,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9680504,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":261090,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2662400,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":457698,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10305528,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2947706,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10928120,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":752610,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3193466,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1194978,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11550712,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1637346,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11862008,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2128866,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2816994,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12484600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3294784,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12795896,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13729784,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14352376,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14970808,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34722,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15904696,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187283,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16838584,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":408,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":523648,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17772472,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":916864,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1162624,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18395064,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1457536,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19017656,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1752448,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19640248,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1998208,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20262840,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2342272,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2686336,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20885432,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3079552,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21511736,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3419456,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22134328,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":314309,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22756920,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":969669,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23068216,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1625029,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2273545,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23379512,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2913737,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23690808,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3896777,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24007544,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4879817,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24630136,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5535177,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":318717,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6518217,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":638976,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25261368,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7173577,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":962240,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25573880,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7828937,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1289920,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8484297,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1617600,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25885176,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9462665,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1938880,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10118025,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26196472,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2266560,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11086217,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2594240,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11741577,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2921920,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26511416,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12396937,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3241856,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13379977,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3569536,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26822712,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3897216,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14363017,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4224896,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15346057,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4552576,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27134008,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16318409,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5207936,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17301449,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5535616,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27445304,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18284489,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6190976,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19267529,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6518656,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20250569,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27756600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7174016,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21233609,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7501696,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22216649,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8157056,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23199689,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24182729,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8812416,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28067896,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25166281,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9467456,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26146185,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10122816,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27129225,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10778176,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28112265,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28379192,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29082313,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11433536,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30065353,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12088896,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31037897,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12744256,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13723904,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28686264,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14706944,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15689984,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28997560,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16673024,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319488,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17644672,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":637861,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18301248,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":966757,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29308856,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19279168,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1622117,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29620152,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20240512,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2277477,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20895872,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2932837,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21539136,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29931448,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3588197,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22194496,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4243557,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22849856,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30242744,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4898917,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23505216,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5554277,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24160576,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6537317,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14745600,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24814208,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7192677,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20316160,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25459776,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7848037,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29491200,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30437039,\"total\":30437039},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c0220e17a062\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26115136,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3355753,\"total\":3355753},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"0d9f22794037\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8831077,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3455234,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3455234,\"total\":3455234},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25945,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"388b3a73fab7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3454043,\"total\":3454043},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26770496,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"f6c0dc73268d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5685,\"total\":5685},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"49cc6787893b\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":206396,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9801738,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":499712,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10457098,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27419328,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":991232,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11112458,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1652800,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27741888,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11440138,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30146560,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31204970,\"total\":31204970},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2344576,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b31bfccc6af0\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28069568,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12088842,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28724928,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13071882,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14052234,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29367232,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14694858,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29694912,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15350218,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16330570,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":248740,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30350272,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16985930,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":770048,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17641034,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1553920,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30675264,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17963146,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2340352,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18290826,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3117888,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31002944,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3892864,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18936650,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4679296,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19264330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5203584,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19580746,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5990016,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19908426,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6776448,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24576000,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7559296,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20553610,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31279585,\"total\":31279585},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"022faae9be46\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8345728,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21208970,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9132160,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10180736,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21864330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10967168,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":251702,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11753600,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":497850,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22509386,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12540032,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1022138,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13326464,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22837066,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1546426,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14112384,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2070714,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14898816,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23164746,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2594746,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15685248,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3119034,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16471680,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3381178,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23492426,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17242240,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3905466,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18028672,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4429754,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18815104,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4954042,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19601536,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23819850,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20387968,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5740474,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6264762,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21174272,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6784698,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21960704,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7308986,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24147530,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22747136,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8095418,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23533568,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8881850,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24320000,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9668282,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10716858,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24475210,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11753210,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24802890,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12801786,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13843770,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25130570,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14889658,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15938234,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25458250,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16986810,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25785930,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18032314,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19080890,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26113610,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20129210,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26441290,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21159930,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22208506,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26768970,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23250490,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27096650,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24546042,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27424330,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28079690,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28735050,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29718090,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31028810,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8192000,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23920640,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31274287,\"total\":31274287},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"ae370240f33c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2464320,\"total\":2464320},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"78212413dfbf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14155776,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21495808,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24582275,\"total\":24582275},\"id\":\"23024d174605\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"23024d174605\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24587200,\"total\":24587200},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"52633e4ca4a8\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":287,\"total\":287},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"31553cda4522\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177,\"total\":177},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177,\"total\":177},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"c9cc8d71eb21\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176,\"total\":176},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"8731578f9165\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39,\"total\":39},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"89732bc75041\"}\r\n{\"status\":\"Digest: + sha256:968a8e1690eacf5fb124e7c0d790545bfb00d92e4c041612ce370bca5de77037\"}\r\n{\"status\":\"Status: + Downloaded newer image for paketobuildpacks/builder-jammy-base:latest\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:07:13 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Platform":{"Name":"Docker Engine - Community"},"Version":"29.3.0","ApiVersion":"1.54","MinAPIVersion":"1.40","Os":"linux","Arch":"amd64","Components":[{"Name":"Engine","Version":"29.3.0","Details":{"ApiVersion":"1.54","Arch":"amd64","BuildTime":"2026-03-05T14:25:48.000000000+00:00","Experimental":"false","GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","MinAPIVersion":"1.40","Os":"linux"}},{"Name":"containerd","Version":"v2.2.2","Details":{"GitCommit":"301b2dac98f15c27117da5c8af12118a041a31d9"}},{"Name":"runc","Version":"1.3.4","Details":{"GitCommit":"v1.3.4-0-gd6d73eb8"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","BuildTime":"2026-03-05T14:25:48.000000000+00:00"} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version + method: GET + response: + body: | + {"Platform":{"Name":"Docker Engine - Community"},"Version":"29.3.0","ApiVersion":"1.54","MinAPIVersion":"1.40","Os":"linux","Arch":"amd64","Components":[{"Name":"Engine","Version":"29.3.0","Details":{"ApiVersion":"1.54","Arch":"amd64","BuildTime":"2026-03-05T14:25:48.000000000+00:00","Experimental":"false","GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","MinAPIVersion":"1.40","Os":"linux"}},{"Name":"containerd","Version":"v2.2.2","Details":{"GitCommit":"301b2dac98f15c27117da5c8af12118a041a31d9"}},{"Name":"runc","Version":"1.3.4","Details":{"GitCommit":"v1.3.4-0-gd6d73eb8"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","BuildTime":"2026-03-05T14:25:48.000000000+00:00"} + headers: + Api-Version: + - "1.54" + Content-Length: + - "819" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:22 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"4.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.17\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.18\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.20\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.19\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.19.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.18\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.18\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.15\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"14.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.18.1\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"4.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"21.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.17.1\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.17.4\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.2.1\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"6.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"10.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.21\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.30\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.8\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.5.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.44.5\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.15\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.16\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"1.1.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.11\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.5\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.24\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.3\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"4.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.29\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.21.8\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\",\"0.15\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.40.2+git-c91bcbb.build-6800\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.17.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.16\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f\",\"name\":\"Paketo Buildpack for CPython\"},\"1.18.21\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"4.2.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.19\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.16\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.17\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.17\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.19.7\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.15\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.2.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.11.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"21.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.17.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.17.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"6.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.2.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"14.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"4.1.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.18.1\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"6.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.22.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.18.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"8.0.10\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.5\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.9\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.29\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.30\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"10.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.8\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.5.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.4.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.26.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.24.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.44.5\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.15\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"1.1.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.22.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.36.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.31.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"4.1.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.19\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.6.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"4.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]}],\"layerDiffID\":\"sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.26\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.7.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.5.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"1.1.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"4.2.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.19.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"14.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"21.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"4.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"10.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.44.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2026-04-14T04:49:37Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"},"Created":"1980-01-01T00:00:01Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/8cef9c37a21f927d4119a7a637fbe884cf58b572ba58f89efaca9f1b94ca8c09/diff:/var/lib/docker/overlay2/57330f6bce70e16d5fb0301f6a2c90258019358e917d85d227949f5a2be1dbeb/diff:/var/lib/docker/overlay2/32831bf763a3473ecfaeefbdb5686f8a2ef867c650616e27287bc10820a13aae/diff:/var/lib/docker/overlay2/b71b6504fe335609088d2fedd34fbb4d0f5e5de599c3eec4a1e3c949cddb297f/diff:/var/lib/docker/overlay2/669ebc19ab2a836f9db1960e9e09ebb1e8083f01ac0fe3791bbe20c8d7743493/diff:/var/lib/docker/overlay2/0b142f5d21132feff2c48337b57ec528192493f9b63adfa0a60908c7c15a3883/diff:/var/lib/docker/overlay2/4c9c8551d8cf67d0234d5ee735538cf35049996dbb6aade16e500d8bfce572c6/diff:/var/lib/docker/overlay2/8cc3134da6c845cfd74f9ff35acd0bac70c59d4bf8841cb02146819113465e53/diff:/var/lib/docker/overlay2/9c5a9902b1feab1546e6081dbda43087258eb8ea8b89179f78b1ad04a9d00563/diff:/var/lib/docker/overlay2/2ba5a2a5b76f2678387bdb276a024ec5e8961905132e55f5797fad780edcc308/diff:/var/lib/docker/overlay2/5344e57228837abfb7da8c4dbae9e27e6b417542ac8e27074332e42a8f44e24f/diff:/var/lib/docker/overlay2/966b9d2e9ecee222300505e1e80d2319edc6000ad9f97a80cb2f57b0feb86ec3/diff:/var/lib/docker/overlay2/afd5b5777613afaa361c48b5e8e5969c34586f5fca688c4f3cb49e624b081f36/diff:/var/lib/docker/overlay2/dc53786db7b3dfcece97e5581968f32720805701ba6e46c0812240476d3f2526/diff:/var/lib/docker/overlay2/1a6747110a17127e08d0093287d07d543e72635a28541164ad88f8747b853d5a/diff:/var/lib/docker/overlay2/f2b43e6738660539f11ff33740761c102d364a653bd0d668db104ed481bf3357/diff:/var/lib/docker/overlay2/8f772a6a8ac3a5c49bf211753b159ce1e3e90e3603b12e55b1534fd91c6b366f/diff:/var/lib/docker/overlay2/9e966df0563269dbaa4277da4a06afb7df25906f0b9deb473bece34f5bcc8868/diff:/var/lib/docker/overlay2/ded11ce7a9681dc37b235996243db2ae5c8969c58ffe1f73e325a7d6c098e168/diff:/var/lib/docker/overlay2/def83a1b56c8d360bf459269993215487816d4635118ca3f1f78c6f8c988f452/diff:/var/lib/docker/overlay2/c072e31577fe6bd4655c60011bc3f11c4d058ab3577a7d9632045feb993d2a1a/diff:/var/lib/docker/overlay2/6ed12601ce648f55286c5e953caf336e86bc7a12a6c7455242a95d6c2c33385e/diff:/var/lib/docker/overlay2/caa1bbe8bee1c5c1998c75bafe118191e6e888e57ae45ccaf144a15b36307dac/diff:/var/lib/docker/overlay2/aee43609290a9078bf8e8548a3c34424cead38ccfdc48cf032cab5c876eb5cbf/diff:/var/lib/docker/overlay2/f37b1bbd0176ad99587a419558fe4fcd7487af8cc64fbc25aa83dad2a0d72264/diff:/var/lib/docker/overlay2/0c31d0db1d04cb0ed24d87d23e035865703e5d3ea9a5f24031669f31945ca7f8/diff:/var/lib/docker/overlay2/ed973b5b2d24a1c4710b96dc6a302a1bf8ce00e03c3e16edf85c03a534241cac/diff:/var/lib/docker/overlay2/c2ef79a06131c3e60d6cc7171f8a4b6a565a6264ace83b9e0637e3b5808964dc/diff:/var/lib/docker/overlay2/f6660e0a6d0c98a64d55c7702a307e24679656d9f39f144d685ad5cbc688a83b/diff:/var/lib/docker/overlay2/dc0f188dbbc6bbcbfbc505bffe905e7a43580822e29105b1e156ba9de07e9583/diff:/var/lib/docker/overlay2/58c9bd1e28ddc7bb3fce53a13fae7230eb931db70fe8245af1a88413216b9ec2/diff:/var/lib/docker/overlay2/5784e413e9e8d2b5a97e3c037a0ed676c5bd54ad7079189cdafa3214da951284/diff:/var/lib/docker/overlay2/70f5471192459d7ca062ba71f46a301275a0d60d5bd083826944c99332d7562e/diff:/var/lib/docker/overlay2/252da374ca3ba8d018d8cd9e9b3067032900536a5931bb71be997285860472dc/diff:/var/lib/docker/overlay2/90ac4912d45de2d726971e7a67cc7cb6bc2b567f57ad3d465d393b0c58a0cf02/diff:/var/lib/docker/overlay2/bd38acd644286fcdd09ea096862016a74e39d5dc1f2c5cbdc8153ed8b0b4b80f/diff:/var/lib/docker/overlay2/e3a7c1a15fbaf15842b59f1f112bda8b4401d3ad23f55532ccf74a29dc026586/diff:/var/lib/docker/overlay2/740fa3a03ad0bd3649da3ad313439167488396fa3521e4b9f0bc928172a3ea40/diff:/var/lib/docker/overlay2/8a9d44ca3237fc428342559a2e8304ff2b75992fc3785a4bd0f56d04c0bab779/diff:/var/lib/docker/overlay2/98bc89d08bdc546107de53809aa9c80d3e38b3f199a395ec6b5fb1e76c7eaa02/diff:/var/lib/docker/overlay2/8eec37d7ce42f3158073722a53bba7f86621068c9f004fb27b849b0b40eb3ee3/diff:/var/lib/docker/overlay2/239d6d1c96f6b9ab4d670f73146b83fd57997fb33c5a38ad833ffd1dd59335ab/diff:/var/lib/docker/overlay2/d536711897c605a57611deeac7603a48b9b88a65a7e332ac6b4e08c96c590449/diff:/var/lib/docker/overlay2/d524af3a87d63be94d36606bed779de184099454a30d08fdeb676315b34ff23e/diff:/var/lib/docker/overlay2/f808cf3a0a145bf071a4bc9f0efb53f554fd9bafd1a803bb9f0a09abbd56ac2b/diff:/var/lib/docker/overlay2/3cbb2a03ca9e599c8d149b35371de788fe54212ac603bc0f6568fdac0663d19a/diff:/var/lib/docker/overlay2/9bf811587ac234608e608a1f0a44f7797f0b2797d70340c4d4d8103e5cd0b026/diff:/var/lib/docker/overlay2/258e973989ea1d5ac372918cd60e75b5446856db0a1f6a75a3f8730db6efb7c4/diff:/var/lib/docker/overlay2/22f8ae909295296ae05dd8427a1a2f1150661fc4bbc6e9fa1eb024924034dc1f/diff:/var/lib/docker/overlay2/733992c58e6873b736c53b0e54a81b3320ee5495fcedd313024fbc2048c340f8/diff:/var/lib/docker/overlay2/4e16f7e4f2109c6d1552dbe83177e117b110b8800832c33d59e4e410a38005ff/diff:/var/lib/docker/overlay2/40393103b8159f9333443ed4f2322ee2b7a2c9579e93ebef8256d0b08c55788c/diff:/var/lib/docker/overlay2/1676c40ca01b04048dbde77a12ae1b144aa63e1e9f5848e4bbc49d6cd67df4e1/diff:/var/lib/docker/overlay2/8fe576b31b7289d1ec1b51c18bbfe976fd33abf273b9b7fc8f96efefce82d467/diff:/var/lib/docker/overlay2/88a7f167c3e398ec87eab66022b43d650730fcb3bbb6696a1e52e6523c440f99/diff:/var/lib/docker/overlay2/39328d6cebd641eda1325c105bf8bd2b923a87abdd181804c171c4364940a247/diff:/var/lib/docker/overlay2/3098d1e7979b1b7fc02f28a4a52c1f1755cfaf1b08a25cc21991058fd9d35bb2/diff:/var/lib/docker/overlay2/9ab9f25add7b60ce33fe4e74b9d12e2a9f613a51a4318920ab196cda9f46e2ac/diff:/var/lib/docker/overlay2/0ad8ce3ef20d1d9f51ef70673ac73e851c58958f232357473b0b436b212c8c32/diff:/var/lib/docker/overlay2/836cb3c853c55bb20b75c2cd219adab04a7f779f530fc1359821bdcfb6b8683f/diff:/var/lib/docker/overlay2/258f29aed03a3b03d89ccdc2ceac1685a83b229804f042bad28968568d61a78a/diff:/var/lib/docker/overlay2/9e8f989a84737299c7099486ed51a0cd836b026ec25afc619bd17a3593ab9f18/diff:/var/lib/docker/overlay2/63a6dbb481046ed6e932c2499bfec03129326f65be861b5669bf1e50095abe34/diff:/var/lib/docker/overlay2/57f4f94c36421121ecf67e38d7985febb3eda132aa4b6a5b5a6b7251531555cb/diff:/var/lib/docker/overlay2/d66e53d73c659119a31282966f0452176bbac249c0f3d4b32dd878c477dc8a40/diff:/var/lib/docker/overlay2/6e6b3a1ed39cdf55e5f8f9e18ac66edc3e915568361e39e05bdd061031fbf3aa/diff:/var/lib/docker/overlay2/bda497cbe14e588334314ff3e2d1d9a498babf1eac8208f9a44b3f3359e7af34/diff:/var/lib/docker/overlay2/71c922ae65d5832df42adef7cf19d1ee543f448ed82f146db92e2bbb846e7516/diff:/var/lib/docker/overlay2/2a695f9b4b1c15f86c2513f00bc8ed7475647974e4631d3cb5e1dee66ca54ba9/diff:/var/lib/docker/overlay2/93d36df53e3a436142b277f38006bc9ca8e27b69adee621cea02417ec51e25b8/diff:/var/lib/docker/overlay2/d3f7a1057e52ea5a35d35f0019aca6469e0dfe1484f34c1e760f2eef50fcd0a7/diff:/var/lib/docker/overlay2/a431ff749544a1b23e72d39b2669d5938f7f284c4fe50629f4fbad88ee6dd77c/diff:/var/lib/docker/overlay2/a1b88ade9d1a8d2cd217741ad8f2a86980c9d41c69ad98e3b98860daaffcd7a9/diff:/var/lib/docker/overlay2/769d6908d481f51dad45a1936becd7e04cdaff8ad3500a5422c39ca61f2df569/diff:/var/lib/docker/overlay2/e5cd862af9212f9dcc93f19fcee9c5c39d64384a208e42e9b8f6f61b398ee586/diff:/var/lib/docker/overlay2/af2410426f51f8f6988e56982b731e05927617c562f0a4666eeb5a6a8df52c70/diff:/var/lib/docker/overlay2/b01d9431c19e9b738bb94f92f8d3281a4bc5a8293926db13dd6a0f5449e80372/diff:/var/lib/docker/overlay2/d59e88b4ba83990a0963f2cb6d5a59d511911ca8f96fe6fd01780bf53802d976/diff:/var/lib/docker/overlay2/52ca5118dfd7742f534c27ce5cadc763ffb4d9556a28fdb9ad0c730d2cb2da8a/diff:/var/lib/docker/overlay2/c7a2f14958c564b161d0b5be7f22cced3f04208c7df4465eb97048c64110bdfe/diff:/var/lib/docker/overlay2/d3003389f095bc6a8737af3f8662c3d244c3fdec5b5cbb6e17d2eced383723f5/diff:/var/lib/docker/overlay2/f0fac00072576904f55169df085cff24951160988175ef4ff169bb616d70d6ed/diff:/var/lib/docker/overlay2/a167df907aebb800cd18cfbe565b414812462bc40e3bd7a40b2871e38526ada5/diff:/var/lib/docker/overlay2/c2df2ed21c66a8c3f0463359813e2c1e68837b35d60d756a041b0281623586f8/diff:/var/lib/docker/overlay2/e621c665bfa84e286684b5b85e921459fdbc537308eb8c09d4aeb37eee1370a8/diff:/var/lib/docker/overlay2/59f2e2e4e6c97eeaaac25c708eb4e7248ef064d97cfde6c675ce03fc5f73675a/diff:/var/lib/docker/overlay2/0e91c29b4c2bed7b55933ecafc06767cb8eba6848544e482e7bbea2daa9895ad/diff:/var/lib/docker/overlay2/c2b3b8564150fb8a0e3abf586b36fdd997f7e884f300055612c345e10fb2d5d8/diff:/var/lib/docker/overlay2/94ab9e8f48bd62c9106459093ab61ec77c9d0f925794b7d62e8fd6615c26370f/diff:/var/lib/docker/overlay2/3f6a7793592da7fd5177812098eaf996f8ee996b480abe854377448e50806393/diff:/var/lib/docker/overlay2/fc283033419a2839df2a04688f41bc713fe6b690430f9f5ad1ea161fbc746b5a/diff:/var/lib/docker/overlay2/c2b1a0766e95fb24a741b6fe8cf08e2e45add73fcb30d4914360a2f192b539fa/diff:/var/lib/docker/overlay2/2317110c566647fb9f762118a808e4bcf03f698c794a819e6bcddef9972fcf6e/diff:/var/lib/docker/overlay2/22014b6af503016e6a9faac2a9b9c28cb86f23b7c7df63dec689461140831943/diff:/var/lib/docker/overlay2/c9aba9a0def4dd53c81f26c1622650c78cc1b0882e3fe47971446dfbfd939d30/diff:/var/lib/docker/overlay2/5dec21add1e0f07bfaadf4d0f91c10da0ed587ec6220745018bd119af633293e/diff:/var/lib/docker/overlay2/0551180c7fe6a4cf4bd1e255315f69110f9ac6071197daa47ea8b211ee831bed/diff:/var/lib/docker/overlay2/a33d96db580fbd5be3b0331af429a6ba725bf8650a0c6fec3c52449a35449331/diff:/var/lib/docker/overlay2/27795b4efaacf1776c55d24aaa1382b071f4265d0c1ba409097062563c16594e/diff:/var/lib/docker/overlay2/3096cc939281686552d314fa43cc3d6cbb443bfe2298392a68a38064538095cf/diff:/var/lib/docker/overlay2/22d7f87a5bf76bf63ffb92683bd422b5eb0b6c0574ad41ddef8dd87118145682/diff:/var/lib/docker/overlay2/49b2d26161bdf1a21d93e9ecf60743d23709cffcf2b9536a152fe8fee357a199/diff","MergedDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/merged","UpperDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/diff","WorkDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/work"},"Name":"overlay2"},"Id":"sha256:560c22090b55baefb8c9a7e711898459fb256513001fb78c6ff23673fbada51d","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:968a8e1690eacf5fb124e7c0d790545bfb00d92e4c041612ce370bca5de77037"],"RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RootFS":{"Layers":["sha256:351d919b2c06105efcb263b77e23bff2f166d23bcb487f5185d884bfada142f3","sha256:31fe82df13c96f8e85d40dc1bbee84b80eed702bd664a89ff4a53a73cc0ac3ef","sha256:bc7584e105c73215d3b77672f0db7bed322478f534b2da140d66c623e684b5ee","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:a15c5e8f170641a99030ea02e40a9a11f7422246f33a7e1c157d17027b6bf7ed","sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6","sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31","sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7","sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd","sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d","sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113","sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608","sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59","sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f","sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000","sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435","sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49","sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20","sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4","sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38","sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e","sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2","sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d","sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48","sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2","sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783","sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee","sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b","sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007","sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d","sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2","sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361","sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6","sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02","sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c","sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50","sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86","sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a","sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd","sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e","sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f","sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01","sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df","sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27","sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140","sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e","sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85","sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a","sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef","sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6","sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c","sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2","sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab","sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e","sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194","sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c","sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26","sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1","sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72","sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39","sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18","sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0","sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899","sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885","sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9","sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8","sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75","sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9","sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b","sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1","sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719","sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc","sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5","sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad","sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe","sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c","sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900","sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b","sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b","sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de","sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f","sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba","sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7","sha256:526d61ffd378ab2622871603830494c02446dfc276946e8b72520310eddd8005","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"],"Type":"layers"},"Size":3331987687} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/json + method: GET + response: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"4.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.17\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.18\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.20\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.19\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.19.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.18\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.18\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.15\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"14.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.18.1\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"4.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"21.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.17.1\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.17.4\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.2.1\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"6.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"10.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.21\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.30\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.8\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.5.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.44.5\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.15\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.16\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"1.1.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.11\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.5\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.24\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.3\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"4.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.29\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.21.8\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\",\"0.15\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.40.2+git-c91bcbb.build-6800\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.17.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.16\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f\",\"name\":\"Paketo Buildpack for CPython\"},\"1.18.21\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"4.2.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.19\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.16\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.17\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.17\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.19.7\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.15\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.2.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.11.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"21.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.17.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.17.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"6.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.2.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"14.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"4.1.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.18.1\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"6.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.22.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.18.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"8.0.10\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.5\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.9\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.29\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.30\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"10.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.8\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.5.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.4.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.26.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.24.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.44.5\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.15\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"1.1.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.22.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.36.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.31.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"4.1.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.19\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.6.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"4.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]}],\"layerDiffID\":\"sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.26\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.7.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.5.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"1.1.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"4.2.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.19.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"14.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"21.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"4.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"10.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.44.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2026-04-14T04:49:37Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"},"Created":"1980-01-01T00:00:01Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/8cef9c37a21f927d4119a7a637fbe884cf58b572ba58f89efaca9f1b94ca8c09/diff:/var/lib/docker/overlay2/57330f6bce70e16d5fb0301f6a2c90258019358e917d85d227949f5a2be1dbeb/diff:/var/lib/docker/overlay2/32831bf763a3473ecfaeefbdb5686f8a2ef867c650616e27287bc10820a13aae/diff:/var/lib/docker/overlay2/b71b6504fe335609088d2fedd34fbb4d0f5e5de599c3eec4a1e3c949cddb297f/diff:/var/lib/docker/overlay2/669ebc19ab2a836f9db1960e9e09ebb1e8083f01ac0fe3791bbe20c8d7743493/diff:/var/lib/docker/overlay2/0b142f5d21132feff2c48337b57ec528192493f9b63adfa0a60908c7c15a3883/diff:/var/lib/docker/overlay2/4c9c8551d8cf67d0234d5ee735538cf35049996dbb6aade16e500d8bfce572c6/diff:/var/lib/docker/overlay2/8cc3134da6c845cfd74f9ff35acd0bac70c59d4bf8841cb02146819113465e53/diff:/var/lib/docker/overlay2/9c5a9902b1feab1546e6081dbda43087258eb8ea8b89179f78b1ad04a9d00563/diff:/var/lib/docker/overlay2/2ba5a2a5b76f2678387bdb276a024ec5e8961905132e55f5797fad780edcc308/diff:/var/lib/docker/overlay2/5344e57228837abfb7da8c4dbae9e27e6b417542ac8e27074332e42a8f44e24f/diff:/var/lib/docker/overlay2/966b9d2e9ecee222300505e1e80d2319edc6000ad9f97a80cb2f57b0feb86ec3/diff:/var/lib/docker/overlay2/afd5b5777613afaa361c48b5e8e5969c34586f5fca688c4f3cb49e624b081f36/diff:/var/lib/docker/overlay2/dc53786db7b3dfcece97e5581968f32720805701ba6e46c0812240476d3f2526/diff:/var/lib/docker/overlay2/1a6747110a17127e08d0093287d07d543e72635a28541164ad88f8747b853d5a/diff:/var/lib/docker/overlay2/f2b43e6738660539f11ff33740761c102d364a653bd0d668db104ed481bf3357/diff:/var/lib/docker/overlay2/8f772a6a8ac3a5c49bf211753b159ce1e3e90e3603b12e55b1534fd91c6b366f/diff:/var/lib/docker/overlay2/9e966df0563269dbaa4277da4a06afb7df25906f0b9deb473bece34f5bcc8868/diff:/var/lib/docker/overlay2/ded11ce7a9681dc37b235996243db2ae5c8969c58ffe1f73e325a7d6c098e168/diff:/var/lib/docker/overlay2/def83a1b56c8d360bf459269993215487816d4635118ca3f1f78c6f8c988f452/diff:/var/lib/docker/overlay2/c072e31577fe6bd4655c60011bc3f11c4d058ab3577a7d9632045feb993d2a1a/diff:/var/lib/docker/overlay2/6ed12601ce648f55286c5e953caf336e86bc7a12a6c7455242a95d6c2c33385e/diff:/var/lib/docker/overlay2/caa1bbe8bee1c5c1998c75bafe118191e6e888e57ae45ccaf144a15b36307dac/diff:/var/lib/docker/overlay2/aee43609290a9078bf8e8548a3c34424cead38ccfdc48cf032cab5c876eb5cbf/diff:/var/lib/docker/overlay2/f37b1bbd0176ad99587a419558fe4fcd7487af8cc64fbc25aa83dad2a0d72264/diff:/var/lib/docker/overlay2/0c31d0db1d04cb0ed24d87d23e035865703e5d3ea9a5f24031669f31945ca7f8/diff:/var/lib/docker/overlay2/ed973b5b2d24a1c4710b96dc6a302a1bf8ce00e03c3e16edf85c03a534241cac/diff:/var/lib/docker/overlay2/c2ef79a06131c3e60d6cc7171f8a4b6a565a6264ace83b9e0637e3b5808964dc/diff:/var/lib/docker/overlay2/f6660e0a6d0c98a64d55c7702a307e24679656d9f39f144d685ad5cbc688a83b/diff:/var/lib/docker/overlay2/dc0f188dbbc6bbcbfbc505bffe905e7a43580822e29105b1e156ba9de07e9583/diff:/var/lib/docker/overlay2/58c9bd1e28ddc7bb3fce53a13fae7230eb931db70fe8245af1a88413216b9ec2/diff:/var/lib/docker/overlay2/5784e413e9e8d2b5a97e3c037a0ed676c5bd54ad7079189cdafa3214da951284/diff:/var/lib/docker/overlay2/70f5471192459d7ca062ba71f46a301275a0d60d5bd083826944c99332d7562e/diff:/var/lib/docker/overlay2/252da374ca3ba8d018d8cd9e9b3067032900536a5931bb71be997285860472dc/diff:/var/lib/docker/overlay2/90ac4912d45de2d726971e7a67cc7cb6bc2b567f57ad3d465d393b0c58a0cf02/diff:/var/lib/docker/overlay2/bd38acd644286fcdd09ea096862016a74e39d5dc1f2c5cbdc8153ed8b0b4b80f/diff:/var/lib/docker/overlay2/e3a7c1a15fbaf15842b59f1f112bda8b4401d3ad23f55532ccf74a29dc026586/diff:/var/lib/docker/overlay2/740fa3a03ad0bd3649da3ad313439167488396fa3521e4b9f0bc928172a3ea40/diff:/var/lib/docker/overlay2/8a9d44ca3237fc428342559a2e8304ff2b75992fc3785a4bd0f56d04c0bab779/diff:/var/lib/docker/overlay2/98bc89d08bdc546107de53809aa9c80d3e38b3f199a395ec6b5fb1e76c7eaa02/diff:/var/lib/docker/overlay2/8eec37d7ce42f3158073722a53bba7f86621068c9f004fb27b849b0b40eb3ee3/diff:/var/lib/docker/overlay2/239d6d1c96f6b9ab4d670f73146b83fd57997fb33c5a38ad833ffd1dd59335ab/diff:/var/lib/docker/overlay2/d536711897c605a57611deeac7603a48b9b88a65a7e332ac6b4e08c96c590449/diff:/var/lib/docker/overlay2/d524af3a87d63be94d36606bed779de184099454a30d08fdeb676315b34ff23e/diff:/var/lib/docker/overlay2/f808cf3a0a145bf071a4bc9f0efb53f554fd9bafd1a803bb9f0a09abbd56ac2b/diff:/var/lib/docker/overlay2/3cbb2a03ca9e599c8d149b35371de788fe54212ac603bc0f6568fdac0663d19a/diff:/var/lib/docker/overlay2/9bf811587ac234608e608a1f0a44f7797f0b2797d70340c4d4d8103e5cd0b026/diff:/var/lib/docker/overlay2/258e973989ea1d5ac372918cd60e75b5446856db0a1f6a75a3f8730db6efb7c4/diff:/var/lib/docker/overlay2/22f8ae909295296ae05dd8427a1a2f1150661fc4bbc6e9fa1eb024924034dc1f/diff:/var/lib/docker/overlay2/733992c58e6873b736c53b0e54a81b3320ee5495fcedd313024fbc2048c340f8/diff:/var/lib/docker/overlay2/4e16f7e4f2109c6d1552dbe83177e117b110b8800832c33d59e4e410a38005ff/diff:/var/lib/docker/overlay2/40393103b8159f9333443ed4f2322ee2b7a2c9579e93ebef8256d0b08c55788c/diff:/var/lib/docker/overlay2/1676c40ca01b04048dbde77a12ae1b144aa63e1e9f5848e4bbc49d6cd67df4e1/diff:/var/lib/docker/overlay2/8fe576b31b7289d1ec1b51c18bbfe976fd33abf273b9b7fc8f96efefce82d467/diff:/var/lib/docker/overlay2/88a7f167c3e398ec87eab66022b43d650730fcb3bbb6696a1e52e6523c440f99/diff:/var/lib/docker/overlay2/39328d6cebd641eda1325c105bf8bd2b923a87abdd181804c171c4364940a247/diff:/var/lib/docker/overlay2/3098d1e7979b1b7fc02f28a4a52c1f1755cfaf1b08a25cc21991058fd9d35bb2/diff:/var/lib/docker/overlay2/9ab9f25add7b60ce33fe4e74b9d12e2a9f613a51a4318920ab196cda9f46e2ac/diff:/var/lib/docker/overlay2/0ad8ce3ef20d1d9f51ef70673ac73e851c58958f232357473b0b436b212c8c32/diff:/var/lib/docker/overlay2/836cb3c853c55bb20b75c2cd219adab04a7f779f530fc1359821bdcfb6b8683f/diff:/var/lib/docker/overlay2/258f29aed03a3b03d89ccdc2ceac1685a83b229804f042bad28968568d61a78a/diff:/var/lib/docker/overlay2/9e8f989a84737299c7099486ed51a0cd836b026ec25afc619bd17a3593ab9f18/diff:/var/lib/docker/overlay2/63a6dbb481046ed6e932c2499bfec03129326f65be861b5669bf1e50095abe34/diff:/var/lib/docker/overlay2/57f4f94c36421121ecf67e38d7985febb3eda132aa4b6a5b5a6b7251531555cb/diff:/var/lib/docker/overlay2/d66e53d73c659119a31282966f0452176bbac249c0f3d4b32dd878c477dc8a40/diff:/var/lib/docker/overlay2/6e6b3a1ed39cdf55e5f8f9e18ac66edc3e915568361e39e05bdd061031fbf3aa/diff:/var/lib/docker/overlay2/bda497cbe14e588334314ff3e2d1d9a498babf1eac8208f9a44b3f3359e7af34/diff:/var/lib/docker/overlay2/71c922ae65d5832df42adef7cf19d1ee543f448ed82f146db92e2bbb846e7516/diff:/var/lib/docker/overlay2/2a695f9b4b1c15f86c2513f00bc8ed7475647974e4631d3cb5e1dee66ca54ba9/diff:/var/lib/docker/overlay2/93d36df53e3a436142b277f38006bc9ca8e27b69adee621cea02417ec51e25b8/diff:/var/lib/docker/overlay2/d3f7a1057e52ea5a35d35f0019aca6469e0dfe1484f34c1e760f2eef50fcd0a7/diff:/var/lib/docker/overlay2/a431ff749544a1b23e72d39b2669d5938f7f284c4fe50629f4fbad88ee6dd77c/diff:/var/lib/docker/overlay2/a1b88ade9d1a8d2cd217741ad8f2a86980c9d41c69ad98e3b98860daaffcd7a9/diff:/var/lib/docker/overlay2/769d6908d481f51dad45a1936becd7e04cdaff8ad3500a5422c39ca61f2df569/diff:/var/lib/docker/overlay2/e5cd862af9212f9dcc93f19fcee9c5c39d64384a208e42e9b8f6f61b398ee586/diff:/var/lib/docker/overlay2/af2410426f51f8f6988e56982b731e05927617c562f0a4666eeb5a6a8df52c70/diff:/var/lib/docker/overlay2/b01d9431c19e9b738bb94f92f8d3281a4bc5a8293926db13dd6a0f5449e80372/diff:/var/lib/docker/overlay2/d59e88b4ba83990a0963f2cb6d5a59d511911ca8f96fe6fd01780bf53802d976/diff:/var/lib/docker/overlay2/52ca5118dfd7742f534c27ce5cadc763ffb4d9556a28fdb9ad0c730d2cb2da8a/diff:/var/lib/docker/overlay2/c7a2f14958c564b161d0b5be7f22cced3f04208c7df4465eb97048c64110bdfe/diff:/var/lib/docker/overlay2/d3003389f095bc6a8737af3f8662c3d244c3fdec5b5cbb6e17d2eced383723f5/diff:/var/lib/docker/overlay2/f0fac00072576904f55169df085cff24951160988175ef4ff169bb616d70d6ed/diff:/var/lib/docker/overlay2/a167df907aebb800cd18cfbe565b414812462bc40e3bd7a40b2871e38526ada5/diff:/var/lib/docker/overlay2/c2df2ed21c66a8c3f0463359813e2c1e68837b35d60d756a041b0281623586f8/diff:/var/lib/docker/overlay2/e621c665bfa84e286684b5b85e921459fdbc537308eb8c09d4aeb37eee1370a8/diff:/var/lib/docker/overlay2/59f2e2e4e6c97eeaaac25c708eb4e7248ef064d97cfde6c675ce03fc5f73675a/diff:/var/lib/docker/overlay2/0e91c29b4c2bed7b55933ecafc06767cb8eba6848544e482e7bbea2daa9895ad/diff:/var/lib/docker/overlay2/c2b3b8564150fb8a0e3abf586b36fdd997f7e884f300055612c345e10fb2d5d8/diff:/var/lib/docker/overlay2/94ab9e8f48bd62c9106459093ab61ec77c9d0f925794b7d62e8fd6615c26370f/diff:/var/lib/docker/overlay2/3f6a7793592da7fd5177812098eaf996f8ee996b480abe854377448e50806393/diff:/var/lib/docker/overlay2/fc283033419a2839df2a04688f41bc713fe6b690430f9f5ad1ea161fbc746b5a/diff:/var/lib/docker/overlay2/c2b1a0766e95fb24a741b6fe8cf08e2e45add73fcb30d4914360a2f192b539fa/diff:/var/lib/docker/overlay2/2317110c566647fb9f762118a808e4bcf03f698c794a819e6bcddef9972fcf6e/diff:/var/lib/docker/overlay2/22014b6af503016e6a9faac2a9b9c28cb86f23b7c7df63dec689461140831943/diff:/var/lib/docker/overlay2/c9aba9a0def4dd53c81f26c1622650c78cc1b0882e3fe47971446dfbfd939d30/diff:/var/lib/docker/overlay2/5dec21add1e0f07bfaadf4d0f91c10da0ed587ec6220745018bd119af633293e/diff:/var/lib/docker/overlay2/0551180c7fe6a4cf4bd1e255315f69110f9ac6071197daa47ea8b211ee831bed/diff:/var/lib/docker/overlay2/a33d96db580fbd5be3b0331af429a6ba725bf8650a0c6fec3c52449a35449331/diff:/var/lib/docker/overlay2/27795b4efaacf1776c55d24aaa1382b071f4265d0c1ba409097062563c16594e/diff:/var/lib/docker/overlay2/3096cc939281686552d314fa43cc3d6cbb443bfe2298392a68a38064538095cf/diff:/var/lib/docker/overlay2/22d7f87a5bf76bf63ffb92683bd422b5eb0b6c0574ad41ddef8dd87118145682/diff:/var/lib/docker/overlay2/49b2d26161bdf1a21d93e9ecf60743d23709cffcf2b9536a152fe8fee357a199/diff","MergedDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/merged","UpperDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/diff","WorkDir":"/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/work"},"Name":"overlay2"},"Id":"sha256:560c22090b55baefb8c9a7e711898459fb256513001fb78c6ff23673fbada51d","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:968a8e1690eacf5fb124e7c0d790545bfb00d92e4c041612ce370bca5de77037"],"RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RootFS":{"Layers":["sha256:351d919b2c06105efcb263b77e23bff2f166d23bcb487f5185d884bfada142f3","sha256:31fe82df13c96f8e85d40dc1bbee84b80eed702bd664a89ff4a53a73cc0ac3ef","sha256:bc7584e105c73215d3b77672f0db7bed322478f534b2da140d66c623e684b5ee","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:a15c5e8f170641a99030ea02e40a9a11f7422246f33a7e1c157d17027b6bf7ed","sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6","sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31","sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7","sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd","sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d","sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113","sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608","sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59","sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f","sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000","sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435","sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49","sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20","sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4","sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38","sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e","sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2","sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d","sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48","sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2","sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783","sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee","sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b","sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007","sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d","sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2","sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361","sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6","sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02","sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c","sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50","sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86","sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a","sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd","sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e","sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f","sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01","sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df","sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27","sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140","sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e","sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85","sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a","sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef","sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6","sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c","sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2","sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab","sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e","sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194","sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c","sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26","sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1","sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72","sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39","sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18","sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0","sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899","sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885","sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9","sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8","sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75","sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9","sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b","sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1","sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719","sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc","sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5","sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad","sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe","sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c","sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900","sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b","sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b","sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de","sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f","sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba","sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7","sha256:526d61ffd378ab2622871603830494c02446dfc276946e8b72520310eddd8005","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"],"Type":"layers"},"Size":3331987687} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:22 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:560c22090b55baefb8c9a7e711898459fb256513001fb78c6ff23673fbada51d","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":812,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65606435,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65598243,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5157739,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81802434,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81802434,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81560770,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18917,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7372087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7372087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":80132779,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":8838316,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7314649,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12316816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2933625,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7592642,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4903796,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4968647,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4964551,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67018962,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4915884,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79733534,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67005257,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79737762,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67004980,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79725465,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5166073,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":146565441,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":146565441,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3351,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5161835,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5239679,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5239679,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69996477,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69566261,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69992382,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69544621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5311292,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65078242,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66983739,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7684180,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":15000631,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7543352,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20600,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11209663,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7470471,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4796860,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4788668,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67020101,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7615455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11682738,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76829804,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64809923,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76940400,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4973292,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5361663,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4782969,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4778873,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4516751,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9870283,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":80036941,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81655087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1750,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67072098,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67104584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4938657,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11022758,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69099857,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69017937,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79741933,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7544109,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9886004,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9877812,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9632096,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13547907,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11478422,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11819230,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11807916,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28098084,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":327532919,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78069867,"Tags":null}] + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/history + method: GET + response: + body: | + [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:560c22090b55baefb8c9a7e711898459fb256513001fb78c6ff23673fbada51d","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":812,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65606435,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65598243,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5157739,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81802434,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81802434,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81560770,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18917,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7372087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7372087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":80132779,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":8838316,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7314649,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":12316816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2933625,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7592642,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4903796,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4968647,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4964551,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67018962,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4915884,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79733534,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67005257,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79737762,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67004980,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79725465,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5166073,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":146565441,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":146565441,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3351,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5161835,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5239679,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5239679,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69996477,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69566261,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69992382,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69544621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5311292,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65078242,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66983739,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7684180,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":15000631,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7543352,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20600,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11209663,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7470471,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4796860,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4788668,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67020101,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7615455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11682738,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76829804,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64809923,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76940400,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4973292,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5361663,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4782969,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4778873,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4516751,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9870283,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":80036941,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":81655087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1750,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67072098,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":67104584,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4938657,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11022758,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69099857,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":69017937,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79741933,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7544109,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9886004,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9877812,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9632096,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13547907,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11478422,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11819230,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11807916,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28098084,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":327532919,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78069867,"Tags":null}] + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:22 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127109,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":909302,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1054208,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1570870,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1742336,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2362230,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2430464,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145078,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3664246,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2774528,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":391,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4188534,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3118592,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4979894,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3819200,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5635254,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6290614,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4518592,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6945974,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4860992,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7601334,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5205056,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8387766,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9043126,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5549120,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9704374,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5893184,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10356534,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6237248,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10880822,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11405110,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6581312,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12060470,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6925376,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7269440,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7957568,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8645696,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9333824,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10379968,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11756224,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13149696,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14525952,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15902208,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17278464,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18654720,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20044672,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21437120,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22823424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24211072,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25585408,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26961664,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28347200,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29731648,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31119168,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32495424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33878016,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7569408,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11534336,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19824640,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29196288,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31719424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33882112,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34205123,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9306112,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11403264,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12514207,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Digest: + sha256:42aac86a0aa2713d4ec75b5f111da5c3e5514c944a78ccf1c972d3d51233068a\"}\r\n{\"status\":\"Status: + Downloaded newer image for paketobuildpacks/run-jammy-base:latest\"}\r\n" + form: {} + headers: + X-Registry-Auth: + - eyJhdXRoIjoiT2c9PSJ9 + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Frun-jammy-base&platform=linux%2Famd64&tag=latest + method: POST + response: + body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Pulling + fs layer\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":409,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127109,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":352256,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":909302,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1054208,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1570870,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1742336,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2362230,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2430464,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3145078,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3664246,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2774528,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":391,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4188534,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3118592,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4979894,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3819200,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5635254,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6290614,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4518592,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6945974,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4860992,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7601334,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5205056,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8387766,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9043126,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5549120,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9704374,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5893184,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10356534,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6237248,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10880822,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11405110,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6581312,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12060470,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6925376,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7269440,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7957568,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8645696,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9333824,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10379968,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11756224,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13149696,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14525952,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15902208,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17278464,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18654720,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20044672,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21437120,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22823424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24211072,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25585408,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26961664,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28347200,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29731648,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31119168,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32495424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33878016,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Verifying + Checksum\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Download + complete\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7569408,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11534336,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19824640,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29196288,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31719424,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33882112,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34205123,\"total\":34205123},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"5a539c20c316\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9306112,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11403264,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12514207,\"total\":12514207},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"977cc91d141d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":808,\"total\":808},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"d870eab5a66c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":422,\"total\":422},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Pull + complete\",\"progressDetail\":{},\"id\":\"b49ff4749464\"}\r\n{\"status\":\"Digest: + sha256:42aac86a0aa2713d4ec75b5f111da5c3e5514c944a78ccf1c972d3d51233068a\"}\r\n{\"status\":\"Status: + Downloaded newer image for paketobuildpacks/run-jammy-base:latest\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:23 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Platform":{"Name":"Docker Engine - Community"},"Version":"29.3.0","ApiVersion":"1.54","MinAPIVersion":"1.40","Os":"linux","Arch":"amd64","Components":[{"Name":"Engine","Version":"29.3.0","Details":{"ApiVersion":"1.54","Arch":"amd64","BuildTime":"2026-03-05T14:25:48.000000000+00:00","Experimental":"false","GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","MinAPIVersion":"1.40","Os":"linux"}},{"Name":"containerd","Version":"v2.2.2","Details":{"GitCommit":"301b2dac98f15c27117da5c8af12118a041a31d9"}},{"Name":"runc","Version":"1.3.4","Details":{"GitCommit":"v1.3.4-0-gd6d73eb8"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","BuildTime":"2026-03-05T14:25:48.000000000+00:00"} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version + method: GET + response: + body: | + {"Platform":{"Name":"Docker Engine - Community"},"Version":"29.3.0","ApiVersion":"1.54","MinAPIVersion":"1.40","Os":"linux","Arch":"amd64","Components":[{"Name":"Engine","Version":"29.3.0","Details":{"ApiVersion":"1.54","Arch":"amd64","BuildTime":"2026-03-05T14:25:48.000000000+00:00","Experimental":"false","GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","MinAPIVersion":"1.40","Os":"linux"}},{"Name":"containerd","Version":"v2.2.2","Details":{"GitCommit":"301b2dac98f15c27117da5c8af12118a041a31d9"}},{"Name":"runc","Version":"1.3.4","Details":{"GitCommit":"v1.3.4-0-gd6d73eb8"}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":"de40ad0"}}],"GitCommit":"83bca51","GoVersion":"go1.25.7","KernelVersion":"6.17.0-1012-oem","BuildTime":"2026-03-05T14:25:48.000000000+00:00"} + headers: + Api-Version: + - "1.54" + Content-Length: + - "819" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2026-04-17T13:01:14Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""},"Created":"2026-04-17T13:00:44.678663211Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/3318e5606615a1dc9fd7f72f5cf5753502f307161cf10d52315391c6847ff10e/diff:/var/lib/docker/overlay2/3222412ec790c736df443dec464aaf0aa7b6eec82bcef45778e4864e5404db42/diff:/var/lib/docker/overlay2/260861441cfdb5693b368032d8f18d4928651e1cc66c8021c1d9a10963cb279d/diff","MergedDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/merged","UpperDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/diff","WorkDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/work"},"Name":"overlay2"},"Id":"sha256:334603c359fd26fdafc81e300444f699bd675e8a17560518d099475bbc314029","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":["paketobuildpacks/run-jammy-base@sha256:42aac86a0aa2713d4ec75b5f111da5c3e5514c944a78ccf1c972d3d51233068a"],"RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RootFS":{"Layers":["sha256:39fbf5f8fe523b2ea819cd8eb2bf68807d8eaee383549f7ab80a44503ed6860b","sha256:b868eab7429cf30a9e08b85ceb8a53ced2666664b6d8034d741b63c23bec6c94","sha256:e71c06d4ec0b79fa9ad7cd6e123940461977feaed3af61fceb99790096514525","sha256:8b18c2920d7964ab41f23a5f06d7781f8ef80e6a0fb35e7e766417f244d96865"],"Type":"layers"},"Size":109688498} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/json + method: GET + response: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2026-04-17T13:01:14Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""},"Created":"2026-04-17T13:00:44.678663211Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/3318e5606615a1dc9fd7f72f5cf5753502f307161cf10d52315391c6847ff10e/diff:/var/lib/docker/overlay2/3222412ec790c736df443dec464aaf0aa7b6eec82bcef45778e4864e5404db42/diff:/var/lib/docker/overlay2/260861441cfdb5693b368032d8f18d4928651e1cc66c8021c1d9a10963cb279d/diff","MergedDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/merged","UpperDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/diff","WorkDir":"/var/lib/docker/overlay2/5b88950b89213867d2b33b5a113b1a8f187a28f0f05d3e41026cc4937029023f/work"},"Name":"overlay2"},"Id":"sha256:334603c359fd26fdafc81e300444f699bd675e8a17560518d099475bbc314029","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":["paketobuildpacks/run-jammy-base@sha256:42aac86a0aa2713d4ec75b5f111da5c3e5514c944a78ccf1c972d3d51233068a"],"RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RootFS":{"Layers":["sha256:39fbf5f8fe523b2ea819cd8eb2bf68807d8eaee383549f7ab80a44503ed6860b","sha256:b868eab7429cf30a9e08b85ceb8a53ced2666664b6d8034d741b63c23bec6c94","sha256:e71c06d4ec0b79fa9ad7cd6e123940461977feaed3af61fceb99790096514525","sha256:8b18c2920d7964ab41f23a5f06d7781f8ef80e6a0fb35e7e766417f244d96865"],"Type":"layers"},"Size":109688498} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:334603c359fd26fdafc81e300444f699bd675e8a17560518d099475bbc314029","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31617088,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814464,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814463,"CreatedBy":"/bin/sh -c #(nop) ADD file:da2cd86408d9354e8bd817c8a4b8635a1d788cd20d0d70061ce02a173e8cf902 in / ","Id":"","Size":78069488,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/history + method: GET + response: + body: | + [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:334603c359fd26fdafc81e300444f699bd675e8a17560518d099475bbc314029","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31617088,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1776430844,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814464,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814463,"CreatedBy":"/bin/sh -c #(nop) ADD file:da2cd86408d9354e8bd817c8a4b8635a1d788cd20d0d70061ce02a173e8cf902 in / ","Id":"","Size":78069488,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1775814461,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"ID":"e19e7cbf-a555-4991-b8fe-f143dd98f128","Containers":24,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":22,"Images":48,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":40,"OomKillDisable":false,"NGoroutines":55,"SystemTime":"2026-04-20T13:09:30.390344032+02:00","LoggingDriver":"json-file","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.0-1012-oem","OperatingSystem":"Ubuntu 24.04.4 LTS","OSVersion":"24.04","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"IndexConfigs":{"docker.io":{"Name":"docker.io","Mirrors":[],"Secure":true,"Official":true}},"Mirrors":[]},"NCPU":16,"MemTotal":32744693760,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"lmarabese-ThinkPad-T14s-Gen-6","Labels":[],"ExperimentalBuild":false,"ServerVersion":"29.3.0","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"301b2dac98f15c27117da5c8af12118a041a31d9"},"RuncCommit":{"ID":"v1.3.4-0-gd6d73eb8"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=apparmor","name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info + method: GET + response: + body: | + {"ID":"e19e7cbf-a555-4991-b8fe-f143dd98f128","Containers":24,"ContainersRunning":2,"ContainersPaused":0,"ContainersStopped":22,"Images":48,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":40,"OomKillDisable":false,"NGoroutines":55,"SystemTime":"2026-04-20T13:09:30.390344032+02:00","LoggingDriver":"json-file","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.0-1012-oem","OperatingSystem":"Ubuntu 24.04.4 LTS","OSVersion":"24.04","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"IndexConfigs":{"docker.io":{"Name":"docker.io","Mirrors":[],"Secure":true,"Official":true}},"Mirrors":[]},"NCPU":16,"MemTotal":32744693760,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"lmarabese-ThinkPad-T14s-Gen-6","Labels":[],"ExperimentalBuild":false,"ServerVersion":"29.3.0","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.5.5\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"v1.3.4-0-gd6d73eb8\",\"org.opencontainers.runc.version\":\"1.3.4\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":false,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"301b2dac98f15c27117da5c8af12118a041a31d9"},"RuncCommit":{"ID":"v1.3.4-0-gd6d73eb8"},"InitCommit":{"ID":"de40ad0"},"SecurityOptions":["name=apparmor","name=seccomp,profile=builtin","name=cgroupns"],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/run/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" + form: {} + headers: + Content-Type: + - application/x-tar + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/load?quiet=1 + method: POST + response: + body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"4.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.17\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.18\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.20\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.19\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.19.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.18\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.18\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.15\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"14.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.18.1\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"4.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"21.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.17.1\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.17.4\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.2.1\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"6.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"10.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.21\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.30\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.8\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.5.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.44.5\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.15\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.16\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"1.1.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.11\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.5\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.24\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.3\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"4.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.29\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.21.8\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\",\"0.15\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.17.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.16\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f\",\"name\":\"Paketo Buildpack for CPython\"},\"1.18.21\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"4.2.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.19\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.16\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.17\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.17\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.19.7\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.15\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.2.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.11.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"21.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.17.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.17.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"6.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.2.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"14.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"4.1.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.18.1\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"6.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.22.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.18.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"8.0.10\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.5\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.9\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.29\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.30\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"10.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.8\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.5.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.4.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.26.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.24.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.44.5\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.15\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"1.1.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.22.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.36.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.31.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"4.1.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.19\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.6.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"4.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]}],\"layerDiffID\":\"sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.26\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.7.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.5.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"1.1.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"4.2.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.19.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"14.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"21.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"4.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"10.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.44.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2026-04-14T04:49:37Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"},"Created":"1980-01-01T00:00:01Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/4755a09a47b78dbecf5e02e6a16f4f224c3adfc40e01b2f6e3e9e3a730bd0b17/diff:/var/lib/docker/overlay2/dedac83fa181cbae26e23c33d004316a79474391a0a84b71694050d792a9130d/diff:/var/lib/docker/overlay2/b7b48ad722a0e0a79404a6c24f9c4904184d958916c409b9b257f000ddae2da0/diff:/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/diff:/var/lib/docker/overlay2/8cef9c37a21f927d4119a7a637fbe884cf58b572ba58f89efaca9f1b94ca8c09/diff:/var/lib/docker/overlay2/57330f6bce70e16d5fb0301f6a2c90258019358e917d85d227949f5a2be1dbeb/diff:/var/lib/docker/overlay2/32831bf763a3473ecfaeefbdb5686f8a2ef867c650616e27287bc10820a13aae/diff:/var/lib/docker/overlay2/b71b6504fe335609088d2fedd34fbb4d0f5e5de599c3eec4a1e3c949cddb297f/diff:/var/lib/docker/overlay2/669ebc19ab2a836f9db1960e9e09ebb1e8083f01ac0fe3791bbe20c8d7743493/diff:/var/lib/docker/overlay2/0b142f5d21132feff2c48337b57ec528192493f9b63adfa0a60908c7c15a3883/diff:/var/lib/docker/overlay2/4c9c8551d8cf67d0234d5ee735538cf35049996dbb6aade16e500d8bfce572c6/diff:/var/lib/docker/overlay2/8cc3134da6c845cfd74f9ff35acd0bac70c59d4bf8841cb02146819113465e53/diff:/var/lib/docker/overlay2/9c5a9902b1feab1546e6081dbda43087258eb8ea8b89179f78b1ad04a9d00563/diff:/var/lib/docker/overlay2/2ba5a2a5b76f2678387bdb276a024ec5e8961905132e55f5797fad780edcc308/diff:/var/lib/docker/overlay2/5344e57228837abfb7da8c4dbae9e27e6b417542ac8e27074332e42a8f44e24f/diff:/var/lib/docker/overlay2/966b9d2e9ecee222300505e1e80d2319edc6000ad9f97a80cb2f57b0feb86ec3/diff:/var/lib/docker/overlay2/afd5b5777613afaa361c48b5e8e5969c34586f5fca688c4f3cb49e624b081f36/diff:/var/lib/docker/overlay2/dc53786db7b3dfcece97e5581968f32720805701ba6e46c0812240476d3f2526/diff:/var/lib/docker/overlay2/1a6747110a17127e08d0093287d07d543e72635a28541164ad88f8747b853d5a/diff:/var/lib/docker/overlay2/f2b43e6738660539f11ff33740761c102d364a653bd0d668db104ed481bf3357/diff:/var/lib/docker/overlay2/8f772a6a8ac3a5c49bf211753b159ce1e3e90e3603b12e55b1534fd91c6b366f/diff:/var/lib/docker/overlay2/9e966df0563269dbaa4277da4a06afb7df25906f0b9deb473bece34f5bcc8868/diff:/var/lib/docker/overlay2/ded11ce7a9681dc37b235996243db2ae5c8969c58ffe1f73e325a7d6c098e168/diff:/var/lib/docker/overlay2/def83a1b56c8d360bf459269993215487816d4635118ca3f1f78c6f8c988f452/diff:/var/lib/docker/overlay2/c072e31577fe6bd4655c60011bc3f11c4d058ab3577a7d9632045feb993d2a1a/diff:/var/lib/docker/overlay2/6ed12601ce648f55286c5e953caf336e86bc7a12a6c7455242a95d6c2c33385e/diff:/var/lib/docker/overlay2/caa1bbe8bee1c5c1998c75bafe118191e6e888e57ae45ccaf144a15b36307dac/diff:/var/lib/docker/overlay2/aee43609290a9078bf8e8548a3c34424cead38ccfdc48cf032cab5c876eb5cbf/diff:/var/lib/docker/overlay2/f37b1bbd0176ad99587a419558fe4fcd7487af8cc64fbc25aa83dad2a0d72264/diff:/var/lib/docker/overlay2/0c31d0db1d04cb0ed24d87d23e035865703e5d3ea9a5f24031669f31945ca7f8/diff:/var/lib/docker/overlay2/ed973b5b2d24a1c4710b96dc6a302a1bf8ce00e03c3e16edf85c03a534241cac/diff:/var/lib/docker/overlay2/c2ef79a06131c3e60d6cc7171f8a4b6a565a6264ace83b9e0637e3b5808964dc/diff:/var/lib/docker/overlay2/f6660e0a6d0c98a64d55c7702a307e24679656d9f39f144d685ad5cbc688a83b/diff:/var/lib/docker/overlay2/dc0f188dbbc6bbcbfbc505bffe905e7a43580822e29105b1e156ba9de07e9583/diff:/var/lib/docker/overlay2/58c9bd1e28ddc7bb3fce53a13fae7230eb931db70fe8245af1a88413216b9ec2/diff:/var/lib/docker/overlay2/5784e413e9e8d2b5a97e3c037a0ed676c5bd54ad7079189cdafa3214da951284/diff:/var/lib/docker/overlay2/70f5471192459d7ca062ba71f46a301275a0d60d5bd083826944c99332d7562e/diff:/var/lib/docker/overlay2/252da374ca3ba8d018d8cd9e9b3067032900536a5931bb71be997285860472dc/diff:/var/lib/docker/overlay2/90ac4912d45de2d726971e7a67cc7cb6bc2b567f57ad3d465d393b0c58a0cf02/diff:/var/lib/docker/overlay2/bd38acd644286fcdd09ea096862016a74e39d5dc1f2c5cbdc8153ed8b0b4b80f/diff:/var/lib/docker/overlay2/e3a7c1a15fbaf15842b59f1f112bda8b4401d3ad23f55532ccf74a29dc026586/diff:/var/lib/docker/overlay2/740fa3a03ad0bd3649da3ad313439167488396fa3521e4b9f0bc928172a3ea40/diff:/var/lib/docker/overlay2/8a9d44ca3237fc428342559a2e8304ff2b75992fc3785a4bd0f56d04c0bab779/diff:/var/lib/docker/overlay2/98bc89d08bdc546107de53809aa9c80d3e38b3f199a395ec6b5fb1e76c7eaa02/diff:/var/lib/docker/overlay2/8eec37d7ce42f3158073722a53bba7f86621068c9f004fb27b849b0b40eb3ee3/diff:/var/lib/docker/overlay2/239d6d1c96f6b9ab4d670f73146b83fd57997fb33c5a38ad833ffd1dd59335ab/diff:/var/lib/docker/overlay2/d536711897c605a57611deeac7603a48b9b88a65a7e332ac6b4e08c96c590449/diff:/var/lib/docker/overlay2/d524af3a87d63be94d36606bed779de184099454a30d08fdeb676315b34ff23e/diff:/var/lib/docker/overlay2/f808cf3a0a145bf071a4bc9f0efb53f554fd9bafd1a803bb9f0a09abbd56ac2b/diff:/var/lib/docker/overlay2/3cbb2a03ca9e599c8d149b35371de788fe54212ac603bc0f6568fdac0663d19a/diff:/var/lib/docker/overlay2/9bf811587ac234608e608a1f0a44f7797f0b2797d70340c4d4d8103e5cd0b026/diff:/var/lib/docker/overlay2/258e973989ea1d5ac372918cd60e75b5446856db0a1f6a75a3f8730db6efb7c4/diff:/var/lib/docker/overlay2/22f8ae909295296ae05dd8427a1a2f1150661fc4bbc6e9fa1eb024924034dc1f/diff:/var/lib/docker/overlay2/733992c58e6873b736c53b0e54a81b3320ee5495fcedd313024fbc2048c340f8/diff:/var/lib/docker/overlay2/4e16f7e4f2109c6d1552dbe83177e117b110b8800832c33d59e4e410a38005ff/diff:/var/lib/docker/overlay2/40393103b8159f9333443ed4f2322ee2b7a2c9579e93ebef8256d0b08c55788c/diff:/var/lib/docker/overlay2/1676c40ca01b04048dbde77a12ae1b144aa63e1e9f5848e4bbc49d6cd67df4e1/diff:/var/lib/docker/overlay2/8fe576b31b7289d1ec1b51c18bbfe976fd33abf273b9b7fc8f96efefce82d467/diff:/var/lib/docker/overlay2/88a7f167c3e398ec87eab66022b43d650730fcb3bbb6696a1e52e6523c440f99/diff:/var/lib/docker/overlay2/39328d6cebd641eda1325c105bf8bd2b923a87abdd181804c171c4364940a247/diff:/var/lib/docker/overlay2/3098d1e7979b1b7fc02f28a4a52c1f1755cfaf1b08a25cc21991058fd9d35bb2/diff:/var/lib/docker/overlay2/9ab9f25add7b60ce33fe4e74b9d12e2a9f613a51a4318920ab196cda9f46e2ac/diff:/var/lib/docker/overlay2/0ad8ce3ef20d1d9f51ef70673ac73e851c58958f232357473b0b436b212c8c32/diff:/var/lib/docker/overlay2/836cb3c853c55bb20b75c2cd219adab04a7f779f530fc1359821bdcfb6b8683f/diff:/var/lib/docker/overlay2/258f29aed03a3b03d89ccdc2ceac1685a83b229804f042bad28968568d61a78a/diff:/var/lib/docker/overlay2/9e8f989a84737299c7099486ed51a0cd836b026ec25afc619bd17a3593ab9f18/diff:/var/lib/docker/overlay2/63a6dbb481046ed6e932c2499bfec03129326f65be861b5669bf1e50095abe34/diff:/var/lib/docker/overlay2/57f4f94c36421121ecf67e38d7985febb3eda132aa4b6a5b5a6b7251531555cb/diff:/var/lib/docker/overlay2/d66e53d73c659119a31282966f0452176bbac249c0f3d4b32dd878c477dc8a40/diff:/var/lib/docker/overlay2/6e6b3a1ed39cdf55e5f8f9e18ac66edc3e915568361e39e05bdd061031fbf3aa/diff:/var/lib/docker/overlay2/bda497cbe14e588334314ff3e2d1d9a498babf1eac8208f9a44b3f3359e7af34/diff:/var/lib/docker/overlay2/71c922ae65d5832df42adef7cf19d1ee543f448ed82f146db92e2bbb846e7516/diff:/var/lib/docker/overlay2/2a695f9b4b1c15f86c2513f00bc8ed7475647974e4631d3cb5e1dee66ca54ba9/diff:/var/lib/docker/overlay2/93d36df53e3a436142b277f38006bc9ca8e27b69adee621cea02417ec51e25b8/diff:/var/lib/docker/overlay2/d3f7a1057e52ea5a35d35f0019aca6469e0dfe1484f34c1e760f2eef50fcd0a7/diff:/var/lib/docker/overlay2/a431ff749544a1b23e72d39b2669d5938f7f284c4fe50629f4fbad88ee6dd77c/diff:/var/lib/docker/overlay2/a1b88ade9d1a8d2cd217741ad8f2a86980c9d41c69ad98e3b98860daaffcd7a9/diff:/var/lib/docker/overlay2/769d6908d481f51dad45a1936becd7e04cdaff8ad3500a5422c39ca61f2df569/diff:/var/lib/docker/overlay2/e5cd862af9212f9dcc93f19fcee9c5c39d64384a208e42e9b8f6f61b398ee586/diff:/var/lib/docker/overlay2/af2410426f51f8f6988e56982b731e05927617c562f0a4666eeb5a6a8df52c70/diff:/var/lib/docker/overlay2/b01d9431c19e9b738bb94f92f8d3281a4bc5a8293926db13dd6a0f5449e80372/diff:/var/lib/docker/overlay2/d59e88b4ba83990a0963f2cb6d5a59d511911ca8f96fe6fd01780bf53802d976/diff:/var/lib/docker/overlay2/52ca5118dfd7742f534c27ce5cadc763ffb4d9556a28fdb9ad0c730d2cb2da8a/diff:/var/lib/docker/overlay2/c7a2f14958c564b161d0b5be7f22cced3f04208c7df4465eb97048c64110bdfe/diff:/var/lib/docker/overlay2/d3003389f095bc6a8737af3f8662c3d244c3fdec5b5cbb6e17d2eced383723f5/diff:/var/lib/docker/overlay2/f0fac00072576904f55169df085cff24951160988175ef4ff169bb616d70d6ed/diff:/var/lib/docker/overlay2/a167df907aebb800cd18cfbe565b414812462bc40e3bd7a40b2871e38526ada5/diff:/var/lib/docker/overlay2/c2df2ed21c66a8c3f0463359813e2c1e68837b35d60d756a041b0281623586f8/diff:/var/lib/docker/overlay2/e621c665bfa84e286684b5b85e921459fdbc537308eb8c09d4aeb37eee1370a8/diff:/var/lib/docker/overlay2/59f2e2e4e6c97eeaaac25c708eb4e7248ef064d97cfde6c675ce03fc5f73675a/diff:/var/lib/docker/overlay2/0e91c29b4c2bed7b55933ecafc06767cb8eba6848544e482e7bbea2daa9895ad/diff:/var/lib/docker/overlay2/c2b3b8564150fb8a0e3abf586b36fdd997f7e884f300055612c345e10fb2d5d8/diff:/var/lib/docker/overlay2/94ab9e8f48bd62c9106459093ab61ec77c9d0f925794b7d62e8fd6615c26370f/diff:/var/lib/docker/overlay2/3f6a7793592da7fd5177812098eaf996f8ee996b480abe854377448e50806393/diff:/var/lib/docker/overlay2/fc283033419a2839df2a04688f41bc713fe6b690430f9f5ad1ea161fbc746b5a/diff:/var/lib/docker/overlay2/c2b1a0766e95fb24a741b6fe8cf08e2e45add73fcb30d4914360a2f192b539fa/diff:/var/lib/docker/overlay2/2317110c566647fb9f762118a808e4bcf03f698c794a819e6bcddef9972fcf6e/diff:/var/lib/docker/overlay2/22014b6af503016e6a9faac2a9b9c28cb86f23b7c7df63dec689461140831943/diff:/var/lib/docker/overlay2/c9aba9a0def4dd53c81f26c1622650c78cc1b0882e3fe47971446dfbfd939d30/diff:/var/lib/docker/overlay2/5dec21add1e0f07bfaadf4d0f91c10da0ed587ec6220745018bd119af633293e/diff:/var/lib/docker/overlay2/0551180c7fe6a4cf4bd1e255315f69110f9ac6071197daa47ea8b211ee831bed/diff:/var/lib/docker/overlay2/a33d96db580fbd5be3b0331af429a6ba725bf8650a0c6fec3c52449a35449331/diff:/var/lib/docker/overlay2/27795b4efaacf1776c55d24aaa1382b071f4265d0c1ba409097062563c16594e/diff:/var/lib/docker/overlay2/3096cc939281686552d314fa43cc3d6cbb443bfe2298392a68a38064538095cf/diff:/var/lib/docker/overlay2/22d7f87a5bf76bf63ffb92683bd422b5eb0b6c0574ad41ddef8dd87118145682/diff:/var/lib/docker/overlay2/49b2d26161bdf1a21d93e9ecf60743d23709cffcf2b9536a152fe8fee357a199/diff","MergedDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/merged","UpperDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/diff","WorkDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/work"},"Name":"overlay2"},"Id":"sha256:562997c5541ecae71de53054c3981fbd7ef3b1d9a28032f15981a0d8e45e0991","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":[],"RepoTags":["pack.local/builder/11111111111111111111:latest"],"RootFS":{"Layers":["sha256:351d919b2c06105efcb263b77e23bff2f166d23bcb487f5185d884bfada142f3","sha256:31fe82df13c96f8e85d40dc1bbee84b80eed702bd664a89ff4a53a73cc0ac3ef","sha256:bc7584e105c73215d3b77672f0db7bed322478f534b2da140d66c623e684b5ee","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:a15c5e8f170641a99030ea02e40a9a11f7422246f33a7e1c157d17027b6bf7ed","sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6","sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31","sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7","sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd","sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d","sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113","sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608","sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59","sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f","sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000","sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435","sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49","sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20","sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4","sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38","sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e","sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2","sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d","sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48","sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2","sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783","sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee","sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b","sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007","sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d","sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2","sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361","sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6","sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02","sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c","sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50","sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86","sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a","sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd","sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e","sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f","sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01","sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df","sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27","sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140","sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e","sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85","sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a","sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef","sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6","sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c","sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2","sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab","sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e","sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194","sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c","sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26","sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1","sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72","sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39","sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18","sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0","sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899","sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885","sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9","sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8","sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75","sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9","sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b","sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1","sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719","sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc","sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5","sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad","sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe","sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c","sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900","sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b","sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b","sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de","sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f","sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba","sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7","sha256:526d61ffd378ab2622871603830494c02446dfc276946e8b72520310eddd8005","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"],"Type":"layers"},"Size":3331987812} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest/json + method: GET + response: + body: | + {"Architecture":"amd64","Author":"","Comment":"","Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"4.2.7\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.17\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.18\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.16\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.20\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.19\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.19.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.18\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.18\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.15\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"14.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.18.1\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"4.1.2\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"21.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.17.1\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.2.2\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.7.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.17.4\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.2.1\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.4.2\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.15.1\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"6.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.22.5\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.22.6\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.36.1\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.31.4\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"10.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.21\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.10\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.30\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.4.13\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.8\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.5.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.44.5\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.15\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.16\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"1.1.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.11\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.5\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.24\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.3\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"4.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.11.1\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.12.1\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"8.0.9\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.29\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.13.1\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.20\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.9.2\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.26\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.7.7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.21.8\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\",\"0.15\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.17.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.2.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.7.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.17.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.16\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f\",\"name\":\"Paketo Buildpack for CPython\"},\"1.18.21\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"4.2.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.19\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.20\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.16\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.17\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.17\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.11.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.19.7\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.15\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.18\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.13\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.15\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.2.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.4.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.20\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.11.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.12.1\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"21.5.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.17.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.17.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"6.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.2.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.2.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.10.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.10.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"14.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"4.1.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.7.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.31.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.4.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.22.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.22.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.15.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.36.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.18.1\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.15.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"6.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.22.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.18.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"8.0.10\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.5\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"8.0.9\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.29\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.30\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"10.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.8\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.5.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.21\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.30\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.4.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.10\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true}]}],\"layerDiffID\":\"sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.4.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.26.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.24.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.16.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.18\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.12.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.13.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.44.5\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.24.11\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.18\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.20\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.14\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.15\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.18\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.26.3\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.16.3\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.24\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.16\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.16\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.16\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"1.1.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.24\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.11\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.22.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.20\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.36.1\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.31.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"4.1.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.19\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.6.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.9.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"4.2.5\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.26\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.7.7\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"8.0.9\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.3.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.29\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.20\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.9.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.11.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.12.1\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.20\"}]}],\"layerDiffID\":\"sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.24\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.26\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.7.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.7.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.5.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"1.1.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"4.2.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.19.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"14.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"21.5.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"4.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"10.2.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.44.5\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.13.1\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2026-04-14T04:49:37Z","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"},"Created":"1980-01-01T00:00:01Z","DockerVersion":"","GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/4755a09a47b78dbecf5e02e6a16f4f224c3adfc40e01b2f6e3e9e3a730bd0b17/diff:/var/lib/docker/overlay2/dedac83fa181cbae26e23c33d004316a79474391a0a84b71694050d792a9130d/diff:/var/lib/docker/overlay2/b7b48ad722a0e0a79404a6c24f9c4904184d958916c409b9b257f000ddae2da0/diff:/var/lib/docker/overlay2/de0a409dc3635d51854f014060a136aa80c1e2db59c253034213efb6e320283c/diff:/var/lib/docker/overlay2/8cef9c37a21f927d4119a7a637fbe884cf58b572ba58f89efaca9f1b94ca8c09/diff:/var/lib/docker/overlay2/57330f6bce70e16d5fb0301f6a2c90258019358e917d85d227949f5a2be1dbeb/diff:/var/lib/docker/overlay2/32831bf763a3473ecfaeefbdb5686f8a2ef867c650616e27287bc10820a13aae/diff:/var/lib/docker/overlay2/b71b6504fe335609088d2fedd34fbb4d0f5e5de599c3eec4a1e3c949cddb297f/diff:/var/lib/docker/overlay2/669ebc19ab2a836f9db1960e9e09ebb1e8083f01ac0fe3791bbe20c8d7743493/diff:/var/lib/docker/overlay2/0b142f5d21132feff2c48337b57ec528192493f9b63adfa0a60908c7c15a3883/diff:/var/lib/docker/overlay2/4c9c8551d8cf67d0234d5ee735538cf35049996dbb6aade16e500d8bfce572c6/diff:/var/lib/docker/overlay2/8cc3134da6c845cfd74f9ff35acd0bac70c59d4bf8841cb02146819113465e53/diff:/var/lib/docker/overlay2/9c5a9902b1feab1546e6081dbda43087258eb8ea8b89179f78b1ad04a9d00563/diff:/var/lib/docker/overlay2/2ba5a2a5b76f2678387bdb276a024ec5e8961905132e55f5797fad780edcc308/diff:/var/lib/docker/overlay2/5344e57228837abfb7da8c4dbae9e27e6b417542ac8e27074332e42a8f44e24f/diff:/var/lib/docker/overlay2/966b9d2e9ecee222300505e1e80d2319edc6000ad9f97a80cb2f57b0feb86ec3/diff:/var/lib/docker/overlay2/afd5b5777613afaa361c48b5e8e5969c34586f5fca688c4f3cb49e624b081f36/diff:/var/lib/docker/overlay2/dc53786db7b3dfcece97e5581968f32720805701ba6e46c0812240476d3f2526/diff:/var/lib/docker/overlay2/1a6747110a17127e08d0093287d07d543e72635a28541164ad88f8747b853d5a/diff:/var/lib/docker/overlay2/f2b43e6738660539f11ff33740761c102d364a653bd0d668db104ed481bf3357/diff:/var/lib/docker/overlay2/8f772a6a8ac3a5c49bf211753b159ce1e3e90e3603b12e55b1534fd91c6b366f/diff:/var/lib/docker/overlay2/9e966df0563269dbaa4277da4a06afb7df25906f0b9deb473bece34f5bcc8868/diff:/var/lib/docker/overlay2/ded11ce7a9681dc37b235996243db2ae5c8969c58ffe1f73e325a7d6c098e168/diff:/var/lib/docker/overlay2/def83a1b56c8d360bf459269993215487816d4635118ca3f1f78c6f8c988f452/diff:/var/lib/docker/overlay2/c072e31577fe6bd4655c60011bc3f11c4d058ab3577a7d9632045feb993d2a1a/diff:/var/lib/docker/overlay2/6ed12601ce648f55286c5e953caf336e86bc7a12a6c7455242a95d6c2c33385e/diff:/var/lib/docker/overlay2/caa1bbe8bee1c5c1998c75bafe118191e6e888e57ae45ccaf144a15b36307dac/diff:/var/lib/docker/overlay2/aee43609290a9078bf8e8548a3c34424cead38ccfdc48cf032cab5c876eb5cbf/diff:/var/lib/docker/overlay2/f37b1bbd0176ad99587a419558fe4fcd7487af8cc64fbc25aa83dad2a0d72264/diff:/var/lib/docker/overlay2/0c31d0db1d04cb0ed24d87d23e035865703e5d3ea9a5f24031669f31945ca7f8/diff:/var/lib/docker/overlay2/ed973b5b2d24a1c4710b96dc6a302a1bf8ce00e03c3e16edf85c03a534241cac/diff:/var/lib/docker/overlay2/c2ef79a06131c3e60d6cc7171f8a4b6a565a6264ace83b9e0637e3b5808964dc/diff:/var/lib/docker/overlay2/f6660e0a6d0c98a64d55c7702a307e24679656d9f39f144d685ad5cbc688a83b/diff:/var/lib/docker/overlay2/dc0f188dbbc6bbcbfbc505bffe905e7a43580822e29105b1e156ba9de07e9583/diff:/var/lib/docker/overlay2/58c9bd1e28ddc7bb3fce53a13fae7230eb931db70fe8245af1a88413216b9ec2/diff:/var/lib/docker/overlay2/5784e413e9e8d2b5a97e3c037a0ed676c5bd54ad7079189cdafa3214da951284/diff:/var/lib/docker/overlay2/70f5471192459d7ca062ba71f46a301275a0d60d5bd083826944c99332d7562e/diff:/var/lib/docker/overlay2/252da374ca3ba8d018d8cd9e9b3067032900536a5931bb71be997285860472dc/diff:/var/lib/docker/overlay2/90ac4912d45de2d726971e7a67cc7cb6bc2b567f57ad3d465d393b0c58a0cf02/diff:/var/lib/docker/overlay2/bd38acd644286fcdd09ea096862016a74e39d5dc1f2c5cbdc8153ed8b0b4b80f/diff:/var/lib/docker/overlay2/e3a7c1a15fbaf15842b59f1f112bda8b4401d3ad23f55532ccf74a29dc026586/diff:/var/lib/docker/overlay2/740fa3a03ad0bd3649da3ad313439167488396fa3521e4b9f0bc928172a3ea40/diff:/var/lib/docker/overlay2/8a9d44ca3237fc428342559a2e8304ff2b75992fc3785a4bd0f56d04c0bab779/diff:/var/lib/docker/overlay2/98bc89d08bdc546107de53809aa9c80d3e38b3f199a395ec6b5fb1e76c7eaa02/diff:/var/lib/docker/overlay2/8eec37d7ce42f3158073722a53bba7f86621068c9f004fb27b849b0b40eb3ee3/diff:/var/lib/docker/overlay2/239d6d1c96f6b9ab4d670f73146b83fd57997fb33c5a38ad833ffd1dd59335ab/diff:/var/lib/docker/overlay2/d536711897c605a57611deeac7603a48b9b88a65a7e332ac6b4e08c96c590449/diff:/var/lib/docker/overlay2/d524af3a87d63be94d36606bed779de184099454a30d08fdeb676315b34ff23e/diff:/var/lib/docker/overlay2/f808cf3a0a145bf071a4bc9f0efb53f554fd9bafd1a803bb9f0a09abbd56ac2b/diff:/var/lib/docker/overlay2/3cbb2a03ca9e599c8d149b35371de788fe54212ac603bc0f6568fdac0663d19a/diff:/var/lib/docker/overlay2/9bf811587ac234608e608a1f0a44f7797f0b2797d70340c4d4d8103e5cd0b026/diff:/var/lib/docker/overlay2/258e973989ea1d5ac372918cd60e75b5446856db0a1f6a75a3f8730db6efb7c4/diff:/var/lib/docker/overlay2/22f8ae909295296ae05dd8427a1a2f1150661fc4bbc6e9fa1eb024924034dc1f/diff:/var/lib/docker/overlay2/733992c58e6873b736c53b0e54a81b3320ee5495fcedd313024fbc2048c340f8/diff:/var/lib/docker/overlay2/4e16f7e4f2109c6d1552dbe83177e117b110b8800832c33d59e4e410a38005ff/diff:/var/lib/docker/overlay2/40393103b8159f9333443ed4f2322ee2b7a2c9579e93ebef8256d0b08c55788c/diff:/var/lib/docker/overlay2/1676c40ca01b04048dbde77a12ae1b144aa63e1e9f5848e4bbc49d6cd67df4e1/diff:/var/lib/docker/overlay2/8fe576b31b7289d1ec1b51c18bbfe976fd33abf273b9b7fc8f96efefce82d467/diff:/var/lib/docker/overlay2/88a7f167c3e398ec87eab66022b43d650730fcb3bbb6696a1e52e6523c440f99/diff:/var/lib/docker/overlay2/39328d6cebd641eda1325c105bf8bd2b923a87abdd181804c171c4364940a247/diff:/var/lib/docker/overlay2/3098d1e7979b1b7fc02f28a4a52c1f1755cfaf1b08a25cc21991058fd9d35bb2/diff:/var/lib/docker/overlay2/9ab9f25add7b60ce33fe4e74b9d12e2a9f613a51a4318920ab196cda9f46e2ac/diff:/var/lib/docker/overlay2/0ad8ce3ef20d1d9f51ef70673ac73e851c58958f232357473b0b436b212c8c32/diff:/var/lib/docker/overlay2/836cb3c853c55bb20b75c2cd219adab04a7f779f530fc1359821bdcfb6b8683f/diff:/var/lib/docker/overlay2/258f29aed03a3b03d89ccdc2ceac1685a83b229804f042bad28968568d61a78a/diff:/var/lib/docker/overlay2/9e8f989a84737299c7099486ed51a0cd836b026ec25afc619bd17a3593ab9f18/diff:/var/lib/docker/overlay2/63a6dbb481046ed6e932c2499bfec03129326f65be861b5669bf1e50095abe34/diff:/var/lib/docker/overlay2/57f4f94c36421121ecf67e38d7985febb3eda132aa4b6a5b5a6b7251531555cb/diff:/var/lib/docker/overlay2/d66e53d73c659119a31282966f0452176bbac249c0f3d4b32dd878c477dc8a40/diff:/var/lib/docker/overlay2/6e6b3a1ed39cdf55e5f8f9e18ac66edc3e915568361e39e05bdd061031fbf3aa/diff:/var/lib/docker/overlay2/bda497cbe14e588334314ff3e2d1d9a498babf1eac8208f9a44b3f3359e7af34/diff:/var/lib/docker/overlay2/71c922ae65d5832df42adef7cf19d1ee543f448ed82f146db92e2bbb846e7516/diff:/var/lib/docker/overlay2/2a695f9b4b1c15f86c2513f00bc8ed7475647974e4631d3cb5e1dee66ca54ba9/diff:/var/lib/docker/overlay2/93d36df53e3a436142b277f38006bc9ca8e27b69adee621cea02417ec51e25b8/diff:/var/lib/docker/overlay2/d3f7a1057e52ea5a35d35f0019aca6469e0dfe1484f34c1e760f2eef50fcd0a7/diff:/var/lib/docker/overlay2/a431ff749544a1b23e72d39b2669d5938f7f284c4fe50629f4fbad88ee6dd77c/diff:/var/lib/docker/overlay2/a1b88ade9d1a8d2cd217741ad8f2a86980c9d41c69ad98e3b98860daaffcd7a9/diff:/var/lib/docker/overlay2/769d6908d481f51dad45a1936becd7e04cdaff8ad3500a5422c39ca61f2df569/diff:/var/lib/docker/overlay2/e5cd862af9212f9dcc93f19fcee9c5c39d64384a208e42e9b8f6f61b398ee586/diff:/var/lib/docker/overlay2/af2410426f51f8f6988e56982b731e05927617c562f0a4666eeb5a6a8df52c70/diff:/var/lib/docker/overlay2/b01d9431c19e9b738bb94f92f8d3281a4bc5a8293926db13dd6a0f5449e80372/diff:/var/lib/docker/overlay2/d59e88b4ba83990a0963f2cb6d5a59d511911ca8f96fe6fd01780bf53802d976/diff:/var/lib/docker/overlay2/52ca5118dfd7742f534c27ce5cadc763ffb4d9556a28fdb9ad0c730d2cb2da8a/diff:/var/lib/docker/overlay2/c7a2f14958c564b161d0b5be7f22cced3f04208c7df4465eb97048c64110bdfe/diff:/var/lib/docker/overlay2/d3003389f095bc6a8737af3f8662c3d244c3fdec5b5cbb6e17d2eced383723f5/diff:/var/lib/docker/overlay2/f0fac00072576904f55169df085cff24951160988175ef4ff169bb616d70d6ed/diff:/var/lib/docker/overlay2/a167df907aebb800cd18cfbe565b414812462bc40e3bd7a40b2871e38526ada5/diff:/var/lib/docker/overlay2/c2df2ed21c66a8c3f0463359813e2c1e68837b35d60d756a041b0281623586f8/diff:/var/lib/docker/overlay2/e621c665bfa84e286684b5b85e921459fdbc537308eb8c09d4aeb37eee1370a8/diff:/var/lib/docker/overlay2/59f2e2e4e6c97eeaaac25c708eb4e7248ef064d97cfde6c675ce03fc5f73675a/diff:/var/lib/docker/overlay2/0e91c29b4c2bed7b55933ecafc06767cb8eba6848544e482e7bbea2daa9895ad/diff:/var/lib/docker/overlay2/c2b3b8564150fb8a0e3abf586b36fdd997f7e884f300055612c345e10fb2d5d8/diff:/var/lib/docker/overlay2/94ab9e8f48bd62c9106459093ab61ec77c9d0f925794b7d62e8fd6615c26370f/diff:/var/lib/docker/overlay2/3f6a7793592da7fd5177812098eaf996f8ee996b480abe854377448e50806393/diff:/var/lib/docker/overlay2/fc283033419a2839df2a04688f41bc713fe6b690430f9f5ad1ea161fbc746b5a/diff:/var/lib/docker/overlay2/c2b1a0766e95fb24a741b6fe8cf08e2e45add73fcb30d4914360a2f192b539fa/diff:/var/lib/docker/overlay2/2317110c566647fb9f762118a808e4bcf03f698c794a819e6bcddef9972fcf6e/diff:/var/lib/docker/overlay2/22014b6af503016e6a9faac2a9b9c28cb86f23b7c7df63dec689461140831943/diff:/var/lib/docker/overlay2/c9aba9a0def4dd53c81f26c1622650c78cc1b0882e3fe47971446dfbfd939d30/diff:/var/lib/docker/overlay2/5dec21add1e0f07bfaadf4d0f91c10da0ed587ec6220745018bd119af633293e/diff:/var/lib/docker/overlay2/0551180c7fe6a4cf4bd1e255315f69110f9ac6071197daa47ea8b211ee831bed/diff:/var/lib/docker/overlay2/a33d96db580fbd5be3b0331af429a6ba725bf8650a0c6fec3c52449a35449331/diff:/var/lib/docker/overlay2/27795b4efaacf1776c55d24aaa1382b071f4265d0c1ba409097062563c16594e/diff:/var/lib/docker/overlay2/3096cc939281686552d314fa43cc3d6cbb443bfe2298392a68a38064538095cf/diff:/var/lib/docker/overlay2/22d7f87a5bf76bf63ffb92683bd422b5eb0b6c0574ad41ddef8dd87118145682/diff:/var/lib/docker/overlay2/49b2d26161bdf1a21d93e9ecf60743d23709cffcf2b9536a152fe8fee357a199/diff","MergedDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/merged","UpperDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/diff","WorkDir":"/var/lib/docker/overlay2/f7b415ea7ccb6945847b5dd1d89c4a683f114975dc4010c5088fa5c0d52fea67/work"},"Name":"overlay2"},"Id":"sha256:562997c5541ecae71de53054c3981fbd7ef3b1d9a28032f15981a0d8e45e0991","Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Os":"linux","Parent":"","RepoDigests":[],"RepoTags":["pack.local/builder/11111111111111111111:latest"],"RootFS":{"Layers":["sha256:351d919b2c06105efcb263b77e23bff2f166d23bcb487f5185d884bfada142f3","sha256:31fe82df13c96f8e85d40dc1bbee84b80eed702bd664a89ff4a53a73cc0ac3ef","sha256:bc7584e105c73215d3b77672f0db7bed322478f534b2da140d66c623e684b5ee","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:a15c5e8f170641a99030ea02e40a9a11f7422246f33a7e1c157d17027b6bf7ed","sha256:b003765dfb388647b973e3e13dfbd6b87c9d43d6e485d3afe1f22d3b42c985c6","sha256:9d39084f6da5e8560dbdb125dc2f89cb0d9ff5d33f062a06efc8cbddcbb16f31","sha256:f275150654f9dfc734c2a88bdede4916c3ab2c00f6206117a9d689feedd0d7d7","sha256:acb974dc1c3cbcdbb8d6ab38c1c55f968c954109f7e44ec7902a1bbfb16a132d","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:9aaa2c0332d96a45c29a2ce79e9f3c9bdb1c9584df56a24d8c6fbf4b7de6e6bd","sha256:c68855883894ac2b3588ffc9f31640c489429b64bd98f2680278bc6a03ac8c4d","sha256:63f7eea13f732102bf26f3cf2f3c9fea41860823dbef4b62c1a13144d459c113","sha256:9cbce08765a91dc7adcb0e4cb4f81bb59efecaf44ea6a4c5d6353b17751b5608","sha256:b19f642dcfddffd15e01407a4e6ead97cf4b533294dbe671d42d6384f545ac59","sha256:89fc91485bf19a39cd34069ecbf9824598603a336bb46297087f247de7e36f5f","sha256:dc5cd19ca667b0902963a07d1be43982ab09ef0d79744ac393dd85f2fc0c4000","sha256:820e4b8e83a5b1cd4edf3302c8e2c14f7f721f32c7bbd26c31362b3a46a52435","sha256:d93f41de5e3e52b41d5d78eebb800c5dc463f5f950ce947d3200f88c755c0b49","sha256:d86215a46fe7f0b0cfedf73b33acda7205cd6c3458bb82fbe32e530a63ae8f20","sha256:9c8451ccb49b30e39680383e9c0b773d694baf743224894d39412ae1a091fab4","sha256:5ce96026fc16ef7518de4eb591d276dfd5897b7d16daf9d07275f359274d9e38","sha256:8373b1a1a6b2c2f472675ddbcc3f4423d14b740633a3a5915f3a08bff7a17f2e","sha256:6023ec7a3d4d169ef904a548a83c53c14017987ec1cf56ce31ae0b6fa686e6c2","sha256:fb7ef45514a3efaf05e51f7fb9e231a68df20dc4adb2b274f83b9789a07b2a1d","sha256:760447950f08b40697c01f66dbe952580c161b638a18267e5998ee05e147cd48","sha256:258dd253bb803c2c647358970073bfcec7b40d38d7b25c640abb7b3844b0ddd2","sha256:6baa2c7cd7c6ca80ec0eb01c376b9b91647d777aaacfdbb1b9241c2e21200783","sha256:e2c3a88cd62fc11ea5abe5cad99d29e2ee08e5d5740bf54cfeb4a89ecfd9ebee","sha256:bc1ad93c81d6dae7ec1d5d2a658615c2d21bc4abd2b2366f0b781a35d1a9447b","sha256:5d97c270030419fc74f72518e9c599c9de20ef77aa92da7a14f77d25f0b0a007","sha256:6fbefb45b1cd1184cbf3a858b773e5c36f3749ced36e667c16170715fe74398d","sha256:035bd64c28d4137ac13567eb5c3a3749b20f3dc272bdc28715ffa70e592e46c2","sha256:e41c70fd0676e00abb1173bfb8239d002b8348eceda22a4e27201f9e7b9c4361","sha256:bfcab6b7c41309f2f99d6a90ae2c9f2cfe1d63140809f7fb00a56ca956f563c6","sha256:951bb78d766ff5431c1ad981ba4fa22a9a9db415c4f680df1336fc75a9e88b65","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:c7c88fdbae41badaa0556ed617c4bd30fe92802dcee3a6970edec499640cbf02","sha256:29b9c65915a9e3a2fe1d3da3c0bb230eec516bb38a8bf8b92168a489da76513c","sha256:5b2f16f525599f761196c788f15051827fdeb4b04225a317f85cd501ecf4de50","sha256:7861fe80f0de5f248b69374e6e7078cf08b5203dd80fe2e5f44cbb747bb3cb86","sha256:a3609b09eb9e81a832800fd8d82420b0dbe98c44228f092fcf32d7ec45eb188a","sha256:d70b24c31221c852e2f38f50667a7a4a742ff0afca6c5b1f293fa63dd074a2cd","sha256:829c7b2c3d667fb5bcb7b15a74719571b01b86ae71c9f163b8a63ac6e638132e","sha256:41becde8abcb390f0d1b3d23a2f4fcc525a1139f9189f06947a82245e6b5457f","sha256:a8b9264cd596f88fefce2bc2d8028de042c8cf8c1342fa0ea26909d060146f01","sha256:a011759ff766cb1d7e951384d77bc2dcd8e21c009f006f63f13eba099127b2df","sha256:66e1ece375f3794d1145d8c51416e20c9ada9ac1522f53bbef732e8abe484d27","sha256:7339d9341b8e7f61750c4ea71b8dcffed10e82c2edb7944e14fa86c4fa43f140","sha256:36ab9e368015c1d61bb12976d82840652b70d2c0974c265d14836afce7b6fc7e","sha256:dfc41619601150e98f99f49d2205736a838fdc7d0de3fb72b8d7d5fcac1d1a85","sha256:4276d4eb919ba592b46dc411863918d2c6475addb73545ccb312cd34e122cc3a","sha256:dafa8f682a7b86fd1d0612bd343675b1b057a69aa9cdf421ea2ef46b4e8e2aef","sha256:fd5b3388335c476a637263c99c92c109bb401dd0181276f63409b73c6cfa61a6","sha256:ed57bceb7982dc84478b347d91496844f9ed394ec4551e990bbcfb3917e8934c","sha256:9e85a9380edc45ba50d9c2d7eef2dbe9895c6989641c39464633a83cd01818b2","sha256:1474dc6c1c0529e7cda82452ff314ee376f4525b9922abbe30d7487cf7ee96ab","sha256:42308298d19e8bec4b8cdc8db7a9bfb7c88ccc5a1a7ff6d3d62f3c33fcc3366e","sha256:b05f5ce317bc4ba8d37ea7cfbf179bf897372f1bd4707cc8cbb22dc720fd2194","sha256:125f8b9351065ff41d587f74cad421788bb3e09684bac96d9d822efbc66f406c","sha256:f9768e9f948055fbd9676834667fc197178d3b267e2b22729ec289be09abeb26","sha256:0de521078edb469b2e2e5e207198f78147fb434a10082b838c9951414e3f3dc7","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:66b86932cec78c8f2fd6925273d2412c293762ce17522ad17197a33e4c0089b1","sha256:b4b4692034d3b5dd42a3f688ff1ad877f90ae34b995f5eddd634c29af29b1c72","sha256:cb0df65134a2161641d200a963a098fb6e77aa6bf568c88382ed7d15a1708a39","sha256:62278c7a4948653aefb784c75f26d1c76c19660e4ab856f38efe215fb9feda18","sha256:6c126dc91e32cc1c0fef6f7495f3ac7a4ab60abdc757b4116eec3c2a48d954d0","sha256:996f1c173311b94f70d691303850ae2f0f706466f5fca27bc7b03f9fd8af2899","sha256:7053f15fe716590e02d5816e80db3c076ecfeee5efdc2367f4dd6654e9bab885","sha256:5775ed16e9180a82ddc09c60ba3fdc8b118560226b588871b84381cebc86b8a9","sha256:0311de551c6726e36654e5922ba0b49e2396007c51ea29ff4f3dbbc1085d64a8","sha256:de1718ca65280aa7abc39098d8580ffb76d261da886dad57677c3039c1975c36","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:255ff282c555777fdb5ca52fabde13064d181965bbf8689210c23c1b014d1f75","sha256:a3362c074ea7eadb94e18bf72475bad7da8b3634eb08c3e079ab29ef4ab80fdc","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:6f8dba611658ab2cfed79a1f832337ff5607baf6eddc0de18acdcf369ab46db9","sha256:2aaa63cda7103896ba2266bdcda5955575c8bf1ed454ebe704c5364c102b9b6b","sha256:4eb120f9466f7e26639ddfdd84744eecddc3aef9a270b8cc611244b3dc3268c1","sha256:d4f8b8c1a9ee623f817a06246eac638057e8de360dd7694283d47b3c96cc6719","sha256:3f4fad9399cf976f832343eaddba6be6c73ae4af85fc043a0804988f4316396d","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:a39b621c7839f503d08e2be06c73fc2f0a26bb700c08aac359f2e10fcf7161dc","sha256:b6ca6debbb0b7dec5d4789907cd8084695a1ac2f884a4b41fd51a16228d16bd5","sha256:d42e4baa019547e9615a890a2cf19735878060a0990d4bc4dd1b1bd106f588ad","sha256:ff665c7efaae15a7ad5723f14c3c8471af3e91009788360ad7fbe47dc6d25ebe","sha256:a77949c7223998a863ac2ed042e993552f8a5644179273b7288cc37b772a379c","sha256:f0f558a24c9244e6d9e4ac1ef7639fe83a9d1eca6b6f1697a6ddc7a421647900","sha256:eaac7b2a740eebcc28870e638b625844bd031e2c8bdb7e78b1065e2d1ec5912b","sha256:6ec667b7b2120c265a5cf66c36d1485e9a513b2698f88bc4e53f38a22ae7d84b","sha256:b053afc67231f008ff880dddc3c86bfba0187c8c048549e5bb256e8d6e50a6de","sha256:bc92cd7c793b6bfb8bad360da6eca0ee112501ecc3016075b512ac67a7af317f","sha256:ef8234d4895d532f05e4af53556baf57d63e2bda529f203c01cbade466352bba","sha256:2b3f2bdfb336c52d0622ab6f24ec06493aee93d4cc0c47c9f4243a500d0f06f7","sha256:526d61ffd378ab2622871603830494c02446dfc276946e8b72520310eddd8005","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"],"Type":"layers"},"Size":3331987812} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/sha256:562997c5541ecae71de53054c3981fbd7ef3b1d9a28032f15981a0d8e45e0991/tag?repo=pack.local%2Fbuilder%2F11111111111111111111&tag=latest + method: POST + response: + body: "" + headers: + Api-Version: + - "1.54" + Content-Length: + - "0" + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 201 Created + code: 201 + duration: "" +- request: + body: | + {"Id":"979669f0c2def47ff1cd45a422d4df877561ce0146cf9f1dc791625a76c01255","Warning":""} + form: {} + headers: + Content-Type: + - application/json + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/create + method: POST + response: + body: | + {"Id":"979669f0c2def47ff1cd45a422d4df877561ce0146cf9f1dc791625a76c01255","Warning":""} + headers: + Api-Version: + - "1.54" + Content-Length: + - "87" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 201 Created + code: 201 + duration: "" +- request: + body: | + {"Id":"d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b","Warnings":[]} + form: {} + headers: + Content-Type: + - application/json + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/create + method: POST + response: + body: | + {"Id":"d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b","Warnings":[]} + headers: + Api-Version: + - "1.54" + Content-Length: + - "88" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 201 Created + code: 201 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Type: + - text/plain + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b/archive?noOverwriteDirNonDir=true&path=%2F + method: PUT + response: + body: "" + headers: + Api-Version: + - "1.54" + Content-Length: + - "0" + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Type: + - text/plain + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b/archive?noOverwriteDirNonDir=true&path=%2F + method: PUT + response: + body: "" + headers: + Api-Version: + - "1.54" + Content-Length: + - "0" + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b/start + method: POST + response: + body: "" + headers: + Api-Version: + - "1.54" + Date: + - Mon, 20 Apr 2026 11:09:31 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 204 No Content + code: 204 + duration: "" +- request: + body: !!binary | + AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAYUltYWdlIHdpdGggbm + FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9jbGktdC1jdG5yLWRlcGxveS1icC9jbGktdC1j + dG5yLWRlcGxveS1icDpsYXRlc3QiIG5vdCBmb3VuZAoBAAAAAAAAGBtbMzZtPT09PiBERV + RFQ1RJTkcbWzBtCgEAAAAAAABKdGFyZ2V0IGRpc3RybyBuYW1lL3ZlcnNpb24gbGFiZWxz + IG5vdCBmb3VuZCwgcmVhZGluZyAvZXRjL29zLXJlbGVhc2UgZmlsZQoBAAAAAAAE2D09PT + 09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4y + OSA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYW + dlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4y + OSAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3 + JpcHRAMi4zLjI5ID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRd + IGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3 + JpcHRAMi4zLjI5ICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25v + ZGUtcnVuLXNjcmlwdEAyLjMuMjkgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KH + MpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25v + ZGUtcnVuLXNjcmlwdEAyLjMuMjkgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aW + xkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4yOSA9PT09PT09PQpjb3VsZCBub3QgZmlu + ZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aW + xkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4yOSAoMSkKPT09PT09PT0gT3V0cHV0OiBw + YWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjMwID09PT09PT09CmNvdW + xkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6ICBw + YWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjMwICgxKQo9PT09PT09PS + BPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMzAgPT09 + PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc2 + 9uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMzAgKDEp + CjUgb2YgMTEgYnVpbGRwYWNrcyBwYXJ0aWNpcGF0aW5nCnBha2V0by1idWlsZHBhY2tzL2 + NhLWNlcnRpZmljYXRlcyAzLjEyLjEKcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1lbmdpbmUg + ICAgIDguMC4xMApwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbCAgICAgMi4zLjEzCn + Bha2V0by1idWlsZHBhY2tzL25vZGUtc3RhcnQgICAgICAyLjYuMTIKcGFrZXRvLWJ1aWxk + cGFja3MvbnBtLXN0YXJ0ICAgICAgIDIuNC4xMwoBAAAAAAAAGBtbMzZtPT09PiBSRVNUT1 + JJTkcbWzBtCgEAAAAAAAAXG1szNm09PT0+IEJVSUxESU5HG1swbQoBAAAAAAAASnRhcmdl + dCBkaXN0cm8gbmFtZS92ZXJzaW9uIGxhYmVscyBub3QgZm91bmQsIHJlYWRpbmcgL2V0Yy + 9vcy1yZWxlYXNlIGZpbGUKAQAAAAAAAfgbWzM0bRtbMG0KG1szNG0bWzFtUGFrZXRvIEJ1 + aWxkcGFjayBmb3IgQ0EgQ2VydGlmaWNhdGVzG1swbRtbMzRtIDMuMTIuMRtbMG0KICAbWz + M0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlm + aWNhdGVzG1swbQogIBtbMm1CdWlsZCBDb25maWd1cmF0aW9uOhtbMG0KG1sybSAgICAkQl + BfRU1CRURfQ0VSVFMgICAgICAgICAgICAgICAgICAgIGZhbHNlICBFbWJlZCBjZXJ0aWZp + Y2F0ZXMgaW50byB0aGUgaW1hZ2UbWzBtChtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0 + NFUlRfQklORElORyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2Vy + dGlmaWNhdGUgaGVscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQobWz + JtICAgICRCUF9SVU5USU1FX0NFUlRfQklORElOR19ESVNBQkxFRCAgZmFsc2UgIERpc2Fi + bGUgY2VydGlmaWNhdGUgaGVscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1 + swbQoBAAAAAAAAOSAgG1szNG1MYXVuY2ggSGVscGVyG1swbTogG1szM21Db250cmlidXRp + bmcbWzBtIHRvIGxheWVyCgEAAAAAAABkG1sybSAgICBDcmVhdGluZyAvbGF5ZXJzL3Bha2 + V0by1idWlsZHBhY2tzX2NhLWNlcnRpZmljYXRlcy9oZWxwZXIvZXhlYy5kL2NhLWNlcnRp + ZmljYXRlcy1oZWxwZXIbWzBtCgEAAAAAAACoUGFrZXRvIEJ1aWxkcGFjayBmb3IgTm9kZS + BFbmdpbmUgOC4wLjEwCiAgUmVzb2x2aW5nIE5vZGUgRW5naW5lIHZlcnNpb24KICAgIENh + bmRpZGF0ZSB2ZXJzaW9uIHNvdXJjZXMgKGluIHByaW9yaXR5IG9yZGVyKToKICAgICAgIC + AgICAgICAgIC0+ICIiCiAgICAgIDx1bmtub3duPiAtPiAiIgoKAQAAAAAAAE4gICAgU2Vs + ZWN0ZWQgTm9kZSBFbmdpbmUgdmVyc2lvbiAodXNpbmcgKTogMjQuMTQuMQoKICBFeGVjdX + RpbmcgYnVpbGQgcHJvY2VzcwoBAAAAAAAAIyAgICBJbnN0YWxsaW5nIE5vZGUgRW5naW5l + IDI0LjE0LjEKAQAAAAAAAFwgICAgICBDb21wbGV0ZWQgaW4gMy4zMzJzCgogIEdlbmVyYX + RpbmcgU0JPTSBmb3IgL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9u + b2RlCgEAAAAAAAAXICAgICAgQ29tcGxldGVkIGluIDBzCgoBAAAAAAACYSAgQ29uZmlndX + JpbmcgYnVpbGQgZW52aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlv + biIKICAgIE5PREVfSE9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2 + RlLWVuZ2luZS9ub2RlIgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNh + IgogICAgTk9ERV9WRVJCT1NFIC0+ICJmYWxzZSIKCiAgQ29uZmlndXJpbmcgbGF1bmNoIG + Vudmlyb25tZW50CiAgICBOT0RFX0VOViAgICAgLT4gInByb2R1Y3Rpb24iCiAgICBOT0RF + X0hPTUUgICAgLT4gIi9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3Nfbm9kZS1lbmdpbmUvbm + 9kZSIKICAgIE5PREVfT1BUSU9OUyAtPiAiLS11c2Utb3BlbnNzbC1jYSIKICAgIE5PREVf + VkVSQk9TRSAtPiAiZmFsc2UiCgogICAgV3JpdGluZyBleGVjLmQvMC1vcHRpbWl6ZS1tZW + 1vcnkKICAgICAgQ2FsY3VsYXRlcyBhdmFpbGFibGUgbWVtb3J5IGJhc2VkIG9uIGNvbnRh + aW5lciBsaW1pdHMgYXQgbGF1bmNoIHRpbWUuCiAgICAgIE1hZGUgYXZhaWxhYmxlIGluIH + RoZSBNRU1PUllfQVZBSUxBQkxFIGVudmlyb25tZW50IHZhcmlhYmxlLgogICAgV3JpdGlu + ZyBleGVjLmQvMS1pbnNwZWN0b3IKCgEAAAAAAAD5UGFrZXRvIEJ1aWxkcGFjayBmb3IgTl + BNIEluc3RhbGwgMi4zLjEzCiAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZXNzCiAg + ICBQcm9jZXNzIGlucHV0czoKICAgICAgbm9kZV9tb2R1bGVzICAgICAgLT4gIk5vdCBmb3 + VuZCIKICAgICAgbnBtLWNhY2hlICAgICAgICAgLT4gIk5vdCBmb3VuZCIKICAgICAgcGFj + a2FnZS1sb2NrLmpzb24gLT4gIkZvdW5kIgoKICAgIFNlbGVjdGVkIE5QTSBidWlsZCBwcm + 9jZXNzOiAnbnBtIGNpJwoKAQAAAAAAAC8gIEV4ZWN1dGluZyBsYXVuY2ggZW52aXJvbm1l + bnQgaW5zdGFsbCBwcm9jZXNzCgEAAAAAAABbICAgIFJ1bm5pbmcgJ25wbSBjaSAtLXVuc2 + FmZS1wZXJtIC0tY2FjaGUgL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ucG0taW5zdGFs + bC9ucG0tY2FjaGUnCgEAAAAAAACUICAgICAgCiAgICAgIGFkZGVkIDU3IHBhY2thZ2VzLC + BhbmQgYXVkaXRlZCA1OCBwYWNrYWdlcyBpbiA2OThtcwogICAgICAKICAgICAgNyBwYWNr + YWdlcyBhcmUgbG9va2luZyBmb3IgZnVuZGluZwogICAgICAgIHJ1biBgbnBtIGZ1bmRgIG + ZvciBkZXRhaWxzCgEAAAAAAACkICAgICAgCiAgICAgIDcgdnVsbmVyYWJpbGl0aWVzICgz + IGxvdywgMSBtb2RlcmF0ZSwgMyBoaWdoKQogICAgICAKICAgICAgVG8gYWRkcmVzcyBhbG + wgaXNzdWVzLCBydW46CiAgICAgICAgbnBtIGF1ZGl0IGZpeAogICAgICAKICAgICAgUnVu + IGBucG0gYXVkaXRgIGZvciBkZXRhaWxzLgoBAAAAAAAA8iAgICAgIG5wbSBub3RpY2UKIC + AgICAgbnBtIG5vdGljZSBOZXcgbWlub3IgdmVyc2lvbiBvZiBucG0gYXZhaWxhYmxlISAx + MS4xMS4wIC0+IDExLjEyLjEKICAgICAgbnBtIG5vdGljZSBDaGFuZ2Vsb2c6IGh0dHBzOi + 8vZ2l0aHViLmNvbS9ucG0vY2xpL3JlbGVhc2VzL3RhZy92MTEuMTIuMQogICAgICBucG0g + bm90aWNlIFRvIHVwZGF0ZSBydW46IG5wbSBpbnN0YWxsIC1nIG5wbUAxMS4xMi4xCiAgIC + AgIG5wbSBub3RpY2UKAQAAAAAAAYkgICAgICBDb21wbGV0ZWQgaW4gNzc0bXMKCiAgQ29u + ZmlndXJpbmcgbGF1bmNoIGVudmlyb25tZW50CiAgICBOT0RFX1BST0pFQ1RfUEFUSCAgIC + 0+ICIvd29ya3NwYWNlIgogICAgTlBNX0NPTkZJR19MT0dMRVZFTCAtPiAiZXJyb3IiCiAg + ICBQQVRIICAgICAgICAgICAgICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX2 + 5wbS1pbnN0YWxsL2xhdW5jaC1tb2R1bGVzL25vZGVfbW9kdWxlcy8uYmluX2xvY2FsOiRQ + QVRIOi9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZH + VsZXMvbm9kZV9tb2R1bGVzLy5iaW4iCgogIEdlbmVyYXRpbmcgU0JPTSBmb3IgL2xheWVy + cy9wYWtldG8tYnVpbGRwYWNrc19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcwoBAAAAAA + AAGiAgICAgIENvbXBsZXRlZCBpbiA2MjdtcwoKAQAAAAAAAAEKAQAAAAAAAGdQYWtldG8g + QnVpbGRwYWNrIGZvciBOb2RlIFN0YXJ0IDIuNi4xMgogIEFzc2lnbmluZyBsYXVuY2ggcH + JvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogbm9kZSBpbmRleC5qcwoKAQAAAAAAACZQ + YWtldG8gQnVpbGRwYWNrIGZvciBOUE0gU3RhcnQgMi40LjEzCgEAAAAAAABJICBBc3NpZ2 + 5pbmcgbGF1bmNoIHByb2Nlc3NlczoKICAgIHdlYiAoZGVmYXVsdCk6IHNoIC93b3Jrc3Bh + Y2Uvc3RhcnQuc2gKCgEAAAAAAAAYG1szNm09PT0+IEVYUE9SVElORxtbMG0KAQAAAAAAAD + hBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRlczpoZWxw + ZXInCgEAAAAAAAAyQWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2 + luZTpub2RlJwoBAAAAAAAAPEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBt + LWluc3RhbGw6bGF1bmNoLW1vZHVsZXMnCgEAAAAAAAAyQWRkaW5nIGxheWVyICdidWlsZH + BhY2tzaW8vbGlmZWN5Y2xlOmxhdW5jaC5zYm9tJwoBAAAAAAAAF0FkZGVkIDEvMSBhcHAg + bGF5ZXIocykKAQAAAAAAAC9BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbG + U6bGF1bmNoZXInCgEAAAAAAABhQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5 + Y2xlOmNvbmZpZycKQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xlOnByb2 + Nlc3MtdHlwZXMnCgEAAAAAAAAwQWRkaW5nIGxhYmVsICdpby5idWlsZHBhY2tzLmxpZmVj + eWNsZS5tZXRhZGF0YScKAQAAAAAAACxBZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFja3MuYn + VpbGQubWV0YWRhdGEnCgEAAAAAAAAuQWRkaW5nIGxhYmVsICdpby5idWlsZHBhY2tzLnBy + b2plY3QubWV0YWRhdGEnCgEAAAAAAAAjU2V0dGluZyBkZWZhdWx0IHByb2Nlc3MgdHlwZS + And2ViJwoBAAAAAAAAT1NhdmluZyByZy5mci1wYXIuc2N3LmNsb3VkL2NsaS10LWN0bnIt + ZGVwbG95LWJwL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdC4uLgoBAAAAAAAAZioqKi + BJbWFnZXMgKDJjNDZlNzcyODc3ZCk6CiAgICAgIHJnLmZyLXBhci5zY3cuY2xvdWQvY2xp + LXQtY3Ruci1kZXBsb3ktYnAvY2xpLXQtY3Ruci1kZXBsb3ktYnA6bGF0ZXN0CgEAAAAAAA + A4QWRkaW5nIGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZTpu + b2RlJwoBAAAAAAAAPUFkZGluZyBjYWNoZSBsYXllciAncGFrZXRvLWJ1aWxkcGFja3Mvbn + BtLWluc3RhbGw6bnBtLWNhY2hlJwoBAAAAAAAAN0FkZGluZyBjYWNoZSBsYXllciAnYnVp + bGRwYWNrc2lvL2xpZmVjeWNsZTpjYWNoZS5zYm9tJwo= + form: {} + headers: + Connection: + - Upgrade + Content-Type: + - text/plain + Upgrade: + - tcp + url: http://%2Fvar%2Frun%2Fdocker.sock/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b/attach?stderr=1&stdout=1&stream=1 + method: POST + response: + body: !!binary | + AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAYUltYWdlIHdpdGggbm + FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9jbGktdC1jdG5yLWRlcGxveS1icC9jbGktdC1j + dG5yLWRlcGxveS1icDpsYXRlc3QiIG5vdCBmb3VuZAoBAAAAAAAAGBtbMzZtPT09PiBERV + RFQ1RJTkcbWzBtCgEAAAAAAABKdGFyZ2V0IGRpc3RybyBuYW1lL3ZlcnNpb24gbGFiZWxz + IG5vdCBmb3VuZCwgcmVhZGluZyAvZXRjL29zLXJlbGVhc2UgZmlsZQoBAAAAAAAE2D09PT + 09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4y + OSA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYW + dlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4y + OSAoMSkKPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3 + JpcHRAMi4zLjI5ID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRd + IGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3 + JpcHRAMi4zLjI5ICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25v + ZGUtcnVuLXNjcmlwdEAyLjMuMjkgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KH + MpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25v + ZGUtcnVuLXNjcmlwdEAyLjMuMjkgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aW + xkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4yOSA9PT09PT09PQpjb3VsZCBub3QgZmlu + ZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aW + xkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4yOSAoMSkKPT09PT09PT0gT3V0cHV0OiBw + YWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjMwID09PT09PT09CmNvdW + xkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6ICBw + YWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjMwICgxKQo9PT09PT09PS + BPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMzAgPT09 + PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc2 + 9uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMzAgKDEp + CjUgb2YgMTEgYnVpbGRwYWNrcyBwYXJ0aWNpcGF0aW5nCnBha2V0by1idWlsZHBhY2tzL2 + NhLWNlcnRpZmljYXRlcyAzLjEyLjEKcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1lbmdpbmUg + ICAgIDguMC4xMApwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbCAgICAgMi4zLjEzCn + Bha2V0by1idWlsZHBhY2tzL25vZGUtc3RhcnQgICAgICAyLjYuMTIKcGFrZXRvLWJ1aWxk + cGFja3MvbnBtLXN0YXJ0ICAgICAgIDIuNC4xMwoBAAAAAAAAGBtbMzZtPT09PiBSRVNUT1 + JJTkcbWzBtCgEAAAAAAAAXG1szNm09PT0+IEJVSUxESU5HG1swbQoBAAAAAAAASnRhcmdl + dCBkaXN0cm8gbmFtZS92ZXJzaW9uIGxhYmVscyBub3QgZm91bmQsIHJlYWRpbmcgL2V0Yy + 9vcy1yZWxlYXNlIGZpbGUKAQAAAAAAAfgbWzM0bRtbMG0KG1szNG0bWzFtUGFrZXRvIEJ1 + aWxkcGFjayBmb3IgQ0EgQ2VydGlmaWNhdGVzG1swbRtbMzRtIDMuMTIuMRtbMG0KICAbWz + M0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlm + aWNhdGVzG1swbQogIBtbMm1CdWlsZCBDb25maWd1cmF0aW9uOhtbMG0KG1sybSAgICAkQl + BfRU1CRURfQ0VSVFMgICAgICAgICAgICAgICAgICAgIGZhbHNlICBFbWJlZCBjZXJ0aWZp + Y2F0ZXMgaW50byB0aGUgaW1hZ2UbWzBtChtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0 + NFUlRfQklORElORyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2Vy + dGlmaWNhdGUgaGVscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQobWz + JtICAgICRCUF9SVU5USU1FX0NFUlRfQklORElOR19ESVNBQkxFRCAgZmFsc2UgIERpc2Fi + bGUgY2VydGlmaWNhdGUgaGVscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1 + swbQoBAAAAAAAAOSAgG1szNG1MYXVuY2ggSGVscGVyG1swbTogG1szM21Db250cmlidXRp + bmcbWzBtIHRvIGxheWVyCgEAAAAAAABkG1sybSAgICBDcmVhdGluZyAvbGF5ZXJzL3Bha2 + V0by1idWlsZHBhY2tzX2NhLWNlcnRpZmljYXRlcy9oZWxwZXIvZXhlYy5kL2NhLWNlcnRp + ZmljYXRlcy1oZWxwZXIbWzBtCgEAAAAAAACoUGFrZXRvIEJ1aWxkcGFjayBmb3IgTm9kZS + BFbmdpbmUgOC4wLjEwCiAgUmVzb2x2aW5nIE5vZGUgRW5naW5lIHZlcnNpb24KICAgIENh + bmRpZGF0ZSB2ZXJzaW9uIHNvdXJjZXMgKGluIHByaW9yaXR5IG9yZGVyKToKICAgICAgIC + AgICAgICAgIC0+ICIiCiAgICAgIDx1bmtub3duPiAtPiAiIgoKAQAAAAAAAE4gICAgU2Vs + ZWN0ZWQgTm9kZSBFbmdpbmUgdmVyc2lvbiAodXNpbmcgKTogMjQuMTQuMQoKICBFeGVjdX + RpbmcgYnVpbGQgcHJvY2VzcwoBAAAAAAAAIyAgICBJbnN0YWxsaW5nIE5vZGUgRW5naW5l + IDI0LjE0LjEKAQAAAAAAAFwgICAgICBDb21wbGV0ZWQgaW4gMy4zMzJzCgogIEdlbmVyYX + RpbmcgU0JPTSBmb3IgL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9u + b2RlCgEAAAAAAAAXICAgICAgQ29tcGxldGVkIGluIDBzCgoBAAAAAAACYSAgQ29uZmlndX + JpbmcgYnVpbGQgZW52aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlv + biIKICAgIE5PREVfSE9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2 + RlLWVuZ2luZS9ub2RlIgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNh + IgogICAgTk9ERV9WRVJCT1NFIC0+ICJmYWxzZSIKCiAgQ29uZmlndXJpbmcgbGF1bmNoIG + Vudmlyb25tZW50CiAgICBOT0RFX0VOViAgICAgLT4gInByb2R1Y3Rpb24iCiAgICBOT0RF + X0hPTUUgICAgLT4gIi9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3Nfbm9kZS1lbmdpbmUvbm + 9kZSIKICAgIE5PREVfT1BUSU9OUyAtPiAiLS11c2Utb3BlbnNzbC1jYSIKICAgIE5PREVf + VkVSQk9TRSAtPiAiZmFsc2UiCgogICAgV3JpdGluZyBleGVjLmQvMC1vcHRpbWl6ZS1tZW + 1vcnkKICAgICAgQ2FsY3VsYXRlcyBhdmFpbGFibGUgbWVtb3J5IGJhc2VkIG9uIGNvbnRh + aW5lciBsaW1pdHMgYXQgbGF1bmNoIHRpbWUuCiAgICAgIE1hZGUgYXZhaWxhYmxlIGluIH + RoZSBNRU1PUllfQVZBSUxBQkxFIGVudmlyb25tZW50IHZhcmlhYmxlLgogICAgV3JpdGlu + ZyBleGVjLmQvMS1pbnNwZWN0b3IKCgEAAAAAAAD5UGFrZXRvIEJ1aWxkcGFjayBmb3IgTl + BNIEluc3RhbGwgMi4zLjEzCiAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZXNzCiAg + ICBQcm9jZXNzIGlucHV0czoKICAgICAgbm9kZV9tb2R1bGVzICAgICAgLT4gIk5vdCBmb3 + VuZCIKICAgICAgbnBtLWNhY2hlICAgICAgICAgLT4gIk5vdCBmb3VuZCIKICAgICAgcGFj + a2FnZS1sb2NrLmpzb24gLT4gIkZvdW5kIgoKICAgIFNlbGVjdGVkIE5QTSBidWlsZCBwcm + 9jZXNzOiAnbnBtIGNpJwoKAQAAAAAAAC8gIEV4ZWN1dGluZyBsYXVuY2ggZW52aXJvbm1l + bnQgaW5zdGFsbCBwcm9jZXNzCgEAAAAAAABbICAgIFJ1bm5pbmcgJ25wbSBjaSAtLXVuc2 + FmZS1wZXJtIC0tY2FjaGUgL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ucG0taW5zdGFs + bC9ucG0tY2FjaGUnCgEAAAAAAACUICAgICAgCiAgICAgIGFkZGVkIDU3IHBhY2thZ2VzLC + BhbmQgYXVkaXRlZCA1OCBwYWNrYWdlcyBpbiA2OThtcwogICAgICAKICAgICAgNyBwYWNr + YWdlcyBhcmUgbG9va2luZyBmb3IgZnVuZGluZwogICAgICAgIHJ1biBgbnBtIGZ1bmRgIG + ZvciBkZXRhaWxzCgEAAAAAAACkICAgICAgCiAgICAgIDcgdnVsbmVyYWJpbGl0aWVzICgz + IGxvdywgMSBtb2RlcmF0ZSwgMyBoaWdoKQogICAgICAKICAgICAgVG8gYWRkcmVzcyBhbG + wgaXNzdWVzLCBydW46CiAgICAgICAgbnBtIGF1ZGl0IGZpeAogICAgICAKICAgICAgUnVu + IGBucG0gYXVkaXRgIGZvciBkZXRhaWxzLgoBAAAAAAAA8iAgICAgIG5wbSBub3RpY2UKIC + AgICAgbnBtIG5vdGljZSBOZXcgbWlub3IgdmVyc2lvbiBvZiBucG0gYXZhaWxhYmxlISAx + MS4xMS4wIC0+IDExLjEyLjEKICAgICAgbnBtIG5vdGljZSBDaGFuZ2Vsb2c6IGh0dHBzOi + 8vZ2l0aHViLmNvbS9ucG0vY2xpL3JlbGVhc2VzL3RhZy92MTEuMTIuMQogICAgICBucG0g + bm90aWNlIFRvIHVwZGF0ZSBydW46IG5wbSBpbnN0YWxsIC1nIG5wbUAxMS4xMi4xCiAgIC + AgIG5wbSBub3RpY2UKAQAAAAAAAYkgICAgICBDb21wbGV0ZWQgaW4gNzc0bXMKCiAgQ29u + ZmlndXJpbmcgbGF1bmNoIGVudmlyb25tZW50CiAgICBOT0RFX1BST0pFQ1RfUEFUSCAgIC + 0+ICIvd29ya3NwYWNlIgogICAgTlBNX0NPTkZJR19MT0dMRVZFTCAtPiAiZXJyb3IiCiAg + ICBQQVRIICAgICAgICAgICAgICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX2 + 5wbS1pbnN0YWxsL2xhdW5jaC1tb2R1bGVzL25vZGVfbW9kdWxlcy8uYmluX2xvY2FsOiRQ + QVRIOi9sYXllcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZH + VsZXMvbm9kZV9tb2R1bGVzLy5iaW4iCgogIEdlbmVyYXRpbmcgU0JPTSBmb3IgL2xheWVy + cy9wYWtldG8tYnVpbGRwYWNrc19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcwoBAAAAAA + AAGiAgICAgIENvbXBsZXRlZCBpbiA2MjdtcwoKAQAAAAAAAAEKAQAAAAAAAGdQYWtldG8g + QnVpbGRwYWNrIGZvciBOb2RlIFN0YXJ0IDIuNi4xMgogIEFzc2lnbmluZyBsYXVuY2ggcH + JvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogbm9kZSBpbmRleC5qcwoKAQAAAAAAACZQ + YWtldG8gQnVpbGRwYWNrIGZvciBOUE0gU3RhcnQgMi40LjEzCgEAAAAAAABJICBBc3NpZ2 + 5pbmcgbGF1bmNoIHByb2Nlc3NlczoKICAgIHdlYiAoZGVmYXVsdCk6IHNoIC93b3Jrc3Bh + Y2Uvc3RhcnQuc2gKCgEAAAAAAAAYG1szNm09PT0+IEVYUE9SVElORxtbMG0KAQAAAAAAAD + hBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL2NhLWNlcnRpZmljYXRlczpoZWxw + ZXInCgEAAAAAAAAyQWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2 + luZTpub2RlJwoBAAAAAAAAPEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvbnBt + LWluc3RhbGw6bGF1bmNoLW1vZHVsZXMnCgEAAAAAAAAyQWRkaW5nIGxheWVyICdidWlsZH + BhY2tzaW8vbGlmZWN5Y2xlOmxhdW5jaC5zYm9tJwoBAAAAAAAAF0FkZGVkIDEvMSBhcHAg + bGF5ZXIocykKAQAAAAAAAC9BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saWZlY3ljbG + U6bGF1bmNoZXInCgEAAAAAAABhQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5 + Y2xlOmNvbmZpZycKQWRkaW5nIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xlOnByb2 + Nlc3MtdHlwZXMnCgEAAAAAAAAwQWRkaW5nIGxhYmVsICdpby5idWlsZHBhY2tzLmxpZmVj + eWNsZS5tZXRhZGF0YScKAQAAAAAAACxBZGRpbmcgbGFiZWwgJ2lvLmJ1aWxkcGFja3MuYn + VpbGQubWV0YWRhdGEnCgEAAAAAAAAuQWRkaW5nIGxhYmVsICdpby5idWlsZHBhY2tzLnBy + b2plY3QubWV0YWRhdGEnCgEAAAAAAAAjU2V0dGluZyBkZWZhdWx0IHByb2Nlc3MgdHlwZS + And2ViJwoBAAAAAAAAT1NhdmluZyByZy5mci1wYXIuc2N3LmNsb3VkL2NsaS10LWN0bnIt + ZGVwbG95LWJwL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdC4uLgoBAAAAAAAAZioqKi + BJbWFnZXMgKDJjNDZlNzcyODc3ZCk6CiAgICAgIHJnLmZyLXBhci5zY3cuY2xvdWQvY2xp + LXQtY3Ruci1kZXBsb3ktYnAvY2xpLXQtY3Ruci1kZXBsb3ktYnA6bGF0ZXN0CgEAAAAAAA + A4QWRkaW5nIGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ub2RlLWVuZ2luZTpu + b2RlJwoBAAAAAAAAPUFkZGluZyBjYWNoZSBsYXllciAncGFrZXRvLWJ1aWxkcGFja3Mvbn + BtLWluc3RhbGw6bnBtLWNhY2hlJwoBAAAAAAAAN0FkZGluZyBjYWNoZSBsYXllciAnYnVp + bGRwYWNrc2lvL2xpZmVjeWNsZTpjYWNoZS5zYm9tJwo= + headers: + Connection: + - Upgrade + Content-Type: + - application/vnd.docker.multiplexed-stream + Upgrade: + - tcp + status: 101 UPGRADED + code: 101 + duration: "" +- request: + body: | + {"StatusCode":0} + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b/wait?condition=next-exit + method: POST + response: + body: | + {"StatusCode":0} + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:30 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/d62b17dfe2f039cfa036f1a1f79da80bb5e6a59a08810b6721e024326848a15b?force=1 + method: DELETE + response: + body: "" + headers: + Api-Version: + - "1.54" + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/pack.local-network-7972646f656775726a77 + method: DELETE + response: + body: "" + headers: + Api-Version: + - "1.54" + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-layers-xmykovokjn?force=1 + method: DELETE + response: + body: "" + headers: + Api-Version: + - "1.54" + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-app-ykhmjkftcc?force=1 + method: DELETE + response: + body: "" + headers: + Api-Version: + - "1.54" + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 204 No Content + code: 204 + duration: "" +- request: + body: | + [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:562997c5541ecae71de53054c3981fbd7ef3b1d9a28032f15981a0d8e45e0991"},{"Deleted":"sha256:0679a3451d7a1b3a18885b9318bde7e87fd9e8a3a9572c485b61619f23ac2cc7"},{"Deleted":"sha256:95ab4713b43808fa9b7ab184bf28e2c7a31ad4c3847018c6706616ffbd86a409"},{"Deleted":"sha256:4ac5553ab698e489b59698f368a8f628dc67cc842b5d100f42e341cddc77c3c5"},{"Deleted":"sha256:9eb31c8cd73edd268183001f38edb5faa1079e016aa01d94f8d01c938cdf8bee"}] + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest?force=1&noprune=1 + method: DELETE + response: + body: | + [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:562997c5541ecae71de53054c3981fbd7ef3b1d9a28032f15981a0d8e45e0991"},{"Deleted":"sha256:0679a3451d7a1b3a18885b9318bde7e87fd9e8a3a9572c485b61619f23ac2cc7"},{"Deleted":"sha256:95ab4713b43808fa9b7ab184bf28e2c7a31ad4c3847018c6706616ffbd86a409"},{"Deleted":"sha256:4ac5553ab698e489b59698f368a8f628dc67cc842b5d100f42e341cddc77c3c5"},{"Deleted":"sha256:9eb31c8cd73edd268183001f38edb5faa1079e016aa01d94f8d01c938cdf8bee"}] + headers: + Api-Version: + - "1.54" + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13255,\"total\":324482},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":338944,\"total\":324482},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":132608,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":722432,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2033152,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2328064,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2935808,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526848,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1613312,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2203648,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3874816,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3284480,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5545984,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4955648,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7774208,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6069760,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9445376,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7183872,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11673600,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7740928,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8297984,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14458880,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16687104,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9969152,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18915328,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11083264,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21143552,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12197376,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":134144,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23371776,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12754432,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":330752,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1117184,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25042944,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13868544,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3083264,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14425600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4649472,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26157056,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14982656,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29499392,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31727616,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16653824,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":957},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":957},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17767936,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33955840,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36184064,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19439104,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38412288,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20553216,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40640512,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21667328,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47325184,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48996352,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23338496,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50110464,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25009664,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51224576,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25566720,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51781632,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26680832,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52895744,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27794944,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54009856,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30023168,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55681024,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31137280,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59023360,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32808448,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61251584,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63479808,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34479616,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65150976,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36150784,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66789749,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37821952,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68385792,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68877312,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39493120,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41164288,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42835456,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44506624,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45620736,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47848960,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49520128,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51748352,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53976576,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55647744,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57875968,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60661248,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62889472,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64560640,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66788864,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":648936,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68460032,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69574144,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3284480,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70688256,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5563392,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72916480,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6877184,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74587648,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8519168,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76258816,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10526720,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77372928,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79044096,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80158208,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15378944,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17345024,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80715264,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18983424,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82386432,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21291520,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84057600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24252416,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85171712,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86285824,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29389312,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33634304,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34038272,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87956992,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89628160,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":91299328,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93527552,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6495744,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95198720,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96312832,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97984000,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11970048,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14706688,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17388032,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99655168,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":100769280,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22723856,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101326336,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28619272,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101883392,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32443392,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102997504,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34647040,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104111616,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105225728,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37959680,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105782784,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39073792,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106339840,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40744960,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108011008,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43433984,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108568064,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44519424,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":109682176,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45633536,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46163968,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111353344,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47252992,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":114138624,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":115809792,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48882192,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":117480960,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49984000,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50521088,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119152128,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52698272,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121937408,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123051520,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54361600,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":124155392,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55966208,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125237760,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58175488,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126351872,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59247104,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":127441538,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61416960,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130656768,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62515712,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133312000,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64675577,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":137112576,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139232111,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68379648,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141913600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69991936,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145651615,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71091200,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":146189021,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72158624,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148900675,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74305468,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":151033862,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75908420,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77512704,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":154236416,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80617984,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":157981256,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":159627776,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163873792,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166558208,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":170884096,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":175131136,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":178886015,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183199097,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187460155,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190150609,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":193361421,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":197111808,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200807181,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201344512,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"latest: + digest: sha256:449c0a2dca12a322ee558efb67a0e69639296d3d6771b653b0039f8d7c5f0718 + size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:449c0a2dca12a322ee558efb67a0e69639296d3d6771b653b0039f8d7c5f0718\",\"Size\":2832}}\r\n" + form: {} + headers: + Content-Type: + - application/json + X-Registry-Auth: + - eyJ1c2VybmFtZSI6IlNDVzJXSDRNOVFBQzZQV0VKU0pBIiwicGFzc3dvcmQiOiIxMTRhMDFlNi1hOTIxLTRiMjgtOTQ1ZC0zYWU3YmU4NDkyZDEifQ== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp/push?tag=latest + method: POST + response: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13255,\"total\":324482},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":338944,\"total\":324482},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":132608,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":722432,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2033152,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2328064,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2935808,\"total\":2932898},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ee7c9496de41\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526848,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1613312,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2203648,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3874816,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3284480,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5545984,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4955648,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7774208,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6069760,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9445376,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7183872,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11673600,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7740928,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6b59cdd0667e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8297984,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14458880,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16687104,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9969152,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18915328,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11083264,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21143552,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12197376,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":134144,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23371776,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12754432,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":330752,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1117184,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25042944,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13868544,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3083264,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14425600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4649472,\"total\":4645081},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26157056,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14982656,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29499392,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31727616,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16653824,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":957},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":957},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17767936,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33955840,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36184064,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19439104,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38412288,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20553216,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40640512,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21667328,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47325184,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48996352,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23338496,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50110464,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25009664,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51224576,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25566720,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51781632,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26680832,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52895744,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27794944,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54009856,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30023168,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55681024,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31137280,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59023360,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32808448,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61251584,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63479808,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34479616,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65150976,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36150784,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66789749,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37821952,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68385792,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68877312,\"total\":68479717},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39493120,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41164288,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42835456,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44506624,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45620736,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47848960,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"eef8fc650a9f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49520128,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51748352,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53976576,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6f77ebee7364\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55647744,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57875968,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60661248,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62889472,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64560640,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66788864,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":648936,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68460032,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69574144,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3284480,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70688256,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"8b18c2920d79\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5563392,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72916480,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6877184,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74587648,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8519168,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76258816,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10526720,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77372928,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79044096,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80158208,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15378944,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17345024,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80715264,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18983424,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82386432,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21291520,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84057600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"09f099e483f2\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24252416,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85171712,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86285824,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29389312,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33634304,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34038272,\"total\":31617088},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87956992,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89628160,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":91299328,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e71c06d4ec0b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93527552,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6495744,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95198720,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96312832,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97984000,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11970048,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14706688,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17388032,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99655168,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":100769280,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22723856,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101326336,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28619272,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101883392,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32443392,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102997504,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34647040,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104111616,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105225728,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37959680,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105782784,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39073792,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106339840,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40744960,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108011008,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b868eab7429c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43433984,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108568064,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44519424,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":109682176,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45633536,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46163968,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111353344,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47252992,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":114138624,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":115809792,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48882192,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":117480960,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49984000,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50521088,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119152128,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52698272,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121937408,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123051520,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54361600,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":124155392,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55966208,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125237760,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58175488,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126351872,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59247104,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":127441538,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61416960,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130656768,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62515712,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133312000,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64675577,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":137112576,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139232111,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68379648,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141913600,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69991936,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145651615,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71091200,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":146189021,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72158624,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148900675,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74305468,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":151033862,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75908420,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77512704,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":154236416,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80617984,\"total\":78069488},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":157981256,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":159627776,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163873792,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166558208,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":170884096,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":175131136,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":178886015,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":183199097,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187460155,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190150609,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":193361421,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":197111808,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200807181,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201344512,\"total\":197256840},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"39fbf5f8fe52\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9a42d50f633f\"}\r\n{\"status\":\"latest: + digest: sha256:449c0a2dca12a322ee558efb67a0e69639296d3d6771b653b0039f8d7c5f0718 + size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:449c0a2dca12a322ee558efb67a0e69639296d3d6771b653b0039f8d7c5f0718\",\"Size\":2832}}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:09:40 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"containers":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers?name=cli-t-ctnr-deploy-bp&namespace_id=508a1874-fa5e-4ed4-bff9-ecae159c589b&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"containers":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb5f0717-175d-4230-bb08-f9c4092e393b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed7eb220-c6cb-47e2-9cde-339d3adc582b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb62a1ee-e506-45e0-80d3-0281085b3348 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4a53ebb-b7db-4fbf-a9d5-c789ad24ef0b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 708e95e2-5e97-4708-88b7-89e48dcd22db + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:10:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5701a379-d49f-40ab-ac4f-a48a69cdb704 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:11:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69c8c40f-f09e-43b3-987b-be747837cd95 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:11:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e01d3a5-c39f-4768-bc81-8c06017475f2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:11:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10087dd3-3f65-45e2-bd0a-69037cc6599e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:12:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f839aa83-f5db-4a3e-b5b5-261a99448b35 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:12:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3c37f02-d635-444b-8e44-26675b955b31 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:12:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f057f6f-e43c-49e3-a641-9effbca3edde + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:12:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f374baf6-ac4b-4a4a-bc8d-004a6555d26b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:13:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c0c29e6-fc6f-4fdc-bd42-451feab57e32 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:13:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1969e8cf-c192-42f5-9195-83620899b431 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:13:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5604380f-ab03-4d66-af78-0867656b0a9f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:13:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81489162-f363-4075-91a5-289b2efb6b6f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16bda411-bbb5-4410-8547-dcf34f4d7974 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:14:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af5ad150-03ed-4384-b159-551185c043d0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:14:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cf99497-c7ff-427e-bc6d-7128037cb751 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:14:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43ece1e9-ecb9-450b-b467-cd78d720e400 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"creating", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:10:14.273725Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "968" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88c2cb32-bd57-4b38-b6a6-90989c453ef8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"error", + "error_message":"Container is unable to start OR is not listening on port 3000", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:15:15Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/81f08ab2-53ac-42b8-b5d4-c12f3e28d317 + method: GET + response: + body: '{"id":"81f08ab2-53ac-42b8-b5d4-c12f3e28d317", "name":"cli-t-ctnr-deploy-bp", + "namespace_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "description":"", "status":"error", + "error_message":"Container is unable to start OR is not listening on port 3000", + "created_at":"2026-04-20T11:10:14.273725Z", "updated_at":"2026-04-20T11:15:15Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp/cli-t-ctnr-deploy-bp:latest", + "protocol":"http1", "port":3000, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "1039" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48dd19e6-2de6-494f-a6c5-604db6cc47dc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:06:56.479662Z", + "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1245" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ebc9af11-b2b5-481c-81ef-3c254f0bb589 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:15:16.337300Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/508a1874-fa5e-4ed4-bff9-ecae159c589b + method: DELETE + response: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:15:16.337300Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a7d55a3-d18a-4df2-8ad4-77eb1749f587 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:15:16.337300Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/508a1874-fa5e-4ed4-bff9-ecae159c589b + method: GET + response: + body: '{"id":"508a1874-fa5e-4ed4-bff9-ecae159c589b", "name":"cli-t-ctnr-deploy-bp", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:06:56.479662Z", "updated_at":"2026-04-20T11:15:16.337300Z", + "region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b02b314-ab96-40ff-9e92-42d01cc48ddd + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b","type":"not_found"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/508a1874-fa5e-4ed4-bff9-ecae159c589b + method: GET + response: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"508a1874-fa5e-4ed4-bff9-ecae159c589b","type":"not_found"}' + headers: + Content-Length: + - "130" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dadef0bc-e1a7-4eb1-ad5c-448c5337cb06 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"namespaces":[{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":127269881, + "created_at":"2026-04-20T11:07:12.223275Z", "updated_at":"2026-04-20T11:10:13.902113Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":127269881, + "created_at":"2026-04-20T11:07:12.223275Z", "updated_at":"2026-04-20T11:10:13.902113Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77c9cd52-4769-44ea-b4d8-2193b0233ac1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":127269881, + "created_at":"2026-04-20T11:07:12.223275Z", "updated_at":"2026-04-20T11:15:32.895626479Z", + "image_count":1, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/4182fb06-64fc-4294-aaba-cd1aef24fdcb + method: DELETE + response: + body: '{"id":"4182fb06-64fc-4294-aaba-cd1aef24fdcb", "name":"cli-t-ctnr-deploy-bp", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-bp", "is_public":false, "size":127269881, + "created_at":"2026-04-20T11:07:12.223275Z", "updated_at":"2026-04-20T11:15:32.895626479Z", + "image_count":1, "region":"fr-par"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:15:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92fd42b7-6ed5-4839-870a-9a318d344558 + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-buildpack.golden b/internal/namespaces/container/v1/testdata/test-deploy-buildpack.golden new file mode 100644 index 0000000000..919400eeac --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-buildpack.golden @@ -0,0 +1,6 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +Your application is now available at https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud + +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +"Your application is now available at https://clitctnrdeploybp508a1874-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-simple.cassette.yaml b/internal/namespaces/container/v1/testdata/test-deploy-simple.cassette.yaml new file mode 100644 index 0000000000..ea090f226a --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-simple.cassette.yaml @@ -0,0 +1,803 @@ +--- +version: 1 +interactions: +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T11:02:45.804930Z", + "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T11:02:45.804930Z", + "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1252" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 539f1f4f-0fbf-414f-88aa-6da55bb288c1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6f4a365-8249-4c03-b0b8-cae6d40d5b21 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/2dcb76fe-3ae0-4cfe-867c-704bb307ccf3 + method: GET + response: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 495e931f-7a0e-4faf-a02b-933ac54ed3be + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/2dcb76fe-3ae0-4cfe-867c-704bb307ccf3 + method: GET + response: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}' + headers: + Content-Length: + - "403" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce9cfdc6-4deb-4e16-9567-594a43b7b8a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fdbe520a-0561-4ce9-b78e-bce599f3a2ca + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":0, + "created_at":"2026-04-20T11:03:06.233711985Z", "updated_at":"2026-04-20T11:03:06.233711985Z", + "image_count":0, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":0, + "created_at":"2026-04-20T11:03:06.233711985Z", "updated_at":"2026-04-20T11:03:06.233711985Z", + "image_count":0, "region":"fr-par"}' + headers: + Content-Length: + - "456" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f74a098-f04a-483a-9019-6a58eaaed7c8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: {} + url: http://%2Fvar%2Frun%2Fdocker.sock/_ping + method: HEAD + response: + body: "" + headers: + Api-Version: + - "1.54" + Builder-Version: + - "2" + Cache-Control: + - no-cache, no-store, must-revalidate + Content-Length: + - "0" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Mon, 20 Apr 2026 11:03:06 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Pragma: + - no-cache + Server: + - Docker/29.3.0 (linux) + Swarm: + - inactive + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 128b9541e8f4\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:128b9541e8f4049bff9157a34f9100835fd23878a9cd35c85713a229582dafeb\"}}\r\n{\"stream\":\"Successfully + built 128b9541e8f4\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" + form: {} + headers: + Content-Type: + - application/x-tar + X-Registry-Config: + - bnVsbA== + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Fcli-t-ctnr-deploy-s%2Fcli-t-ctnr-deploy-s%3Alatest + method: POST + response: + body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e 5e7abcdd2021\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache + curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e bdf1ef9cfce3\\n\"}\r\n{\"stream\":\"Step + 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" + ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2526015042db\\n\"}\r\n{\"stream\":\"Step + 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using + cache\\n\"}\r\n{\"stream\":\" ---\\u003e 128b9541e8f4\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:128b9541e8f4049bff9157a34f9100835fd23878a9cd35c85713a229582dafeb\"}}\r\n{\"stream\":\"Successfully + built 128b9541e8f4\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:06 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2511872,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4593152,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6289920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9271808,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10549760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12253696,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13531648,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14806528,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15667200,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17368576,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19078656,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20770816,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22884352,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24575488,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27133144,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":197632,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1279488,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29248000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3245568,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30508032,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7125421,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31328992,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32181760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33443328,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35564032,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37679616,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38957568,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":649216,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2032640,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3478528,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":297984,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2156544,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4131840,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6786048,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"latest: + digest: sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97\",\"Size\":2407}}\r\n" + form: {} + headers: + Content-Type: + - application/json + X-Registry-Auth: + - eyJ1c2VybmFtZSI6IlNDVzJXSDRNOVFBQzZQV0VKU0pBIiwicGFzc3dvcmQiOiIxMTRhMDFlNi1hOTIxLTRiMjgtOTQ1ZC0zYWU3YmU4NDkyZDEiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9jbGktdC1jdG5yLWRlcGxveS1zIn0= + url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s/push?tag=latest + method: POST + response: + body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":402944,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2511872,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4593152,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6289920,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9271808,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10549760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12253696,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13531648,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14806528,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1704c5a3d8da\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15667200,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"205429c26d8c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17368576,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19078656,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20770816,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22884352,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24575488,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27133144,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":197632,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1279488,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29248000,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3245568,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30508032,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5651456,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dc45ec6c902b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7125421,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31328992,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8619008,\"total\":8456691},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32181760,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33443328,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35564032,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37679616,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38957568,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40922624,\"total\":40291778},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"abbef7f88314\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"3e4655a38876\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"db5c9fbe944f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"ed6be5e2fd33\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":649216,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2032640,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3478528,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4589568,\"total\":4130469},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e9a26559275d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":297984,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2156544,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4131840,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6786048,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8607232,\"total\":8322300},\"id\":\"256f393e029f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"1967fccdbe5e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"256f393e029f\"}\r\n{\"status\":\"latest: + digest: sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97 + size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:31fc4e83ff776cddf67e01af79e15b4e5a12bf9981e52cfb83411536de41ea97\",\"Size\":2407}}\r\n" + headers: + Api-Version: + - "1.54" + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:06 GMT + Docker-Experimental: + - "false" + Ostype: + - linux + Server: + - Docker/29.3.0 (linux) + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"containers":[], "total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers?name=cli-t-ctnr-deploy-s&namespace_id=2dcb76fe-3ae0-4cfe-867c-704bb307ccf3&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"containers":[], "total_count":0}' + headers: + Content-Length: + - "34" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b790ae15-6c7e-423f-86fb-b73177836ad5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"creating", + "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:03:56.342166Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"creating", + "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:03:56.342166Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "961" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3fb2caf2-a2a5-4291-8f42-8e6a9c767ad3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"creating", + "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:03:56.342166Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e + method: GET + response: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"creating", + "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:03:56.342166Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "961" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b162bcf-0a07-4795-b963-adcc20608b16 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:04:07Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e + method: GET + response: + body: '{"id":"3ec4f79a-3dec-4ad8-88b2-b9c0e696c56e", "name":"cli-t-ctnr-deploy-s", + "namespace_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T11:03:56.342166Z", "updated_at":"2026-04-20T11:04:07Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s/cli-t-ctnr-deploy-s:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "971" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5aae24e-acd1-4583-8bd2-58adb2f5df03 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"7d69e92a-2a77-4990-b1a9-4f3328288562", "name":"test-logs", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-02T14:39:58.610096Z", "updated_at":"2026-04-02T14:39:58.610096Z", + "region":"fr-par"}, {"id":"08795313-7d08-4a6b-9dd6-f3643b28ae73", "name":"cli-cns-practical-thompson", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-09T13:29:14.902511Z", "updated_at":"2026-04-09T13:29:14.902511Z", + "region":"fr-par"}, {"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:02:50.246701Z", + "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1244" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 894d5d5b-3626-4c14-a3a2-01b0a69a10f7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:04:12.767356Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/2dcb76fe-3ae0-4cfe-867c-704bb307ccf3 + method: DELETE + response: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:04:12.767356Z", + "region":"fr-par"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 143f3f83-03d8-4d5b-bdbe-bd69695ddd8d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:04:12.767356Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/2dcb76fe-3ae0-4cfe-867c-704bb307ccf3 + method: GET + response: + body: '{"id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3", "name":"cli-t-ctnr-deploy-s", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T11:02:50.246701Z", "updated_at":"2026-04-20T11:04:12.767356Z", + "region":"fr-par"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8aa71e34-87b9-4e96-836b-2e2c60ed1773 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3","type":"not_found"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/2dcb76fe-3ae0-4cfe-867c-704bb307ccf3 + method: GET + response: + body: '{"message":"resource is not found","resource":"namespace","resource_id":"2dcb76fe-3ae0-4cfe-867c-704bb307ccf3","type":"not_found"}' + headers: + Content-Length: + - "130" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2e11873-835f-45c6-9d11-cb3a2086ed3b + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"namespaces":[{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":26776297, + "created_at":"2026-04-20T11:03:06.233712Z", "updated_at":"2026-04-20T11:03:55.970277Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":26776297, + "created_at":"2026-04-20T11:03:06.233712Z", "updated_at":"2026-04-20T11:03:55.970277Z", + "image_count":1, "region":"fr-par"}], "total_count":1}' + headers: + Content-Length: + - "491" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6ce05b1-304c-4116-9008-604d57b13f8e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":26776297, + "created_at":"2026-04-20T11:03:06.233712Z", "updated_at":"2026-04-20T11:04:29.318253289Z", + "image_count":1, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/a50f7c95-1145-4a62-b6ea-85eb9ba68a77 + method: DELETE + response: + body: '{"id":"a50f7c95-1145-4a62-b6ea-85eb9ba68a77", "name":"cli-t-ctnr-deploy-s", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-t-ctnr-deploy-s", "is_public":false, "size":26776297, + "created_at":"2026-04-20T11:03:06.233712Z", "updated_at":"2026-04-20T11:04:29.318253289Z", + "image_count":1, "region":"fr-par"}' + headers: + Content-Length: + - "463" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:04:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f811094-77bc-444d-8639-d42aa055801b + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-deploy-simple.golden b/internal/namespaces/container/v1/testdata/test-deploy-simple.golden new file mode 100644 index 0000000000..d26ef99bad --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-deploy-simple.golden @@ -0,0 +1,6 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +Your application is now available at https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud + +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +"Your application is now available at https://clitctnrdeploys2dcb76fe-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1/testdata/test-update-container-registry-image.cassette.yaml b/internal/namespaces/container/v1/testdata/test-update-container-registry-image.cassette.yaml new file mode 100644 index 0000000000..5098770cf6 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-update-container-registry-image.cassette.yaml @@ -0,0 +1,1715 @@ +--- +version: 1 +interactions: +- request: + body: '{"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "name":"cli-test-ctn-update-rg-img-jovial-raman", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":0, "created_at":"2026-04-20T10:56:41.863258307Z", "updated_at":"2026-04-20T10:56:41.863258307Z", + "image_count":0, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "name":"cli-test-ctn-update-rg-img-jovial-raman", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":0, "created_at":"2026-04-20T10:56:41.863258307Z", "updated_at":"2026-04-20T10:56:41.863258307Z", + "image_count":0, "region":"fr-par"}' + headers: + Content-Length: + - "496" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0cc9135-9e25-40d2-ae88-5e0dcb9b8cb7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"images":[{"id":"b468da42-8bad-4a05-9308-f6617b07bd24", "name":"sebp/lighttpd", + "namespace_id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "status":"ready", "status_message":"", + "visibility":"inherit", "size":4436608, "created_at":"2026-04-20T10:56:52.464690Z", + "updated_at":"2026-04-20T10:56:52.987920Z", "tags":["latest"]}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/images?name=sebp%2Flighttpd&namespace_id=4ee876f4-d5ef-4b20-a285-3a6563bf5b28&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"images":[{"id":"b468da42-8bad-4a05-9308-f6617b07bd24", "name":"sebp/lighttpd", + "namespace_id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "status":"ready", "status_message":"", + "visibility":"inherit", "size":4436608, "created_at":"2026-04-20T10:56:52.464690Z", + "updated_at":"2026-04-20T10:56:52.987920Z", "tags":["latest"]}], "total_count":1}' + headers: + Content-Length: + - "340" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9750c851-d030-48fc-a6b1-5b9a4c509a8c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125904904, + "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-30T14:35:52.512165Z", + "image_count":6, "region":"fr-par"}, {"id":"1fb38b24-dbcc-4d67-9c27-cb374c085e55", + "name":"funcscwclicnspracticalthomp08795313", "description":"This Registry Namespace + was automatically created by the Serverless Containers product for the Serverless + Container namespacecli-cns-practical-thompson.", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/funcscwclicnspracticalthomp08795313", "is_public":false, + "size":0, "created_at":"2026-04-09T13:29:15.918676Z", "updated_at":"2026-04-09T13:29:15.918676Z", + "image_count":0, "region":"fr-par"}, {"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", + "name":"cli-test-ctn-update-rg-img-jovial-raman", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T10:57:11.427266Z", + "image_count":2, "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125904904, + "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-30T14:35:52.512165Z", + "image_count":6, "region":"fr-par"}, {"id":"1fb38b24-dbcc-4d67-9c27-cb374c085e55", + "name":"funcscwclicnspracticalthomp08795313", "description":"This Registry Namespace + was automatically created by the Serverless Containers product for the Serverless + Container namespacecli-cns-practical-thompson.", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/funcscwclicnspracticalthomp08795313", "is_public":false, + "size":0, "created_at":"2026-04-09T13:29:15.918676Z", "updated_at":"2026-04-09T13:29:15.918676Z", + "image_count":0, "region":"fr-par"}, {"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", + "name":"cli-test-ctn-update-rg-img-jovial-raman", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T10:57:11.427266Z", + "image_count":2, "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1607" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25d81f71-112a-4c2d-bf9c-df82325af86f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"images":[{"id":"68aa91ab-1cb7-4ebf-abd0-ffec7a3af91a", "name":"nginx", + "namespace_id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "status":"ready", "status_message":"", + "visibility":"inherit", "size":22583979, "created_at":"2026-04-20T10:57:10.441629Z", + "updated_at":"2026-04-20T10:57:11.409693Z", "tags":["1.29.2-alpine"]}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/images?name=nginx&namespace_id=4ee876f4-d5ef-4b20-a285-3a6563bf5b28&order_by=created_at_asc&page=1 + method: GET + response: + body: '{"images":[{"id":"68aa91ab-1cb7-4ebf-abd0-ffec7a3af91a", "name":"nginx", + "namespace_id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "status":"ready", "status_message":"", + "visibility":"inherit", "size":22583979, "created_at":"2026-04-20T10:57:10.441629Z", + "updated_at":"2026-04-20T10:57:11.409693Z", "tags":["1.29.2-alpine"]}], "total_count":1}' + headers: + Content-Length: + - "340" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4b465c0-3239-4fc7-b2dd-e6b86694ec30 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125904904, + "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-30T14:35:52.512165Z", + "image_count":6, "region":"fr-par"}, {"id":"1fb38b24-dbcc-4d67-9c27-cb374c085e55", + "name":"funcscwclicnspracticalthomp08795313", "description":"This Registry Namespace + was automatically created by the Serverless Containers product for the Serverless + Container namespacecli-cns-practical-thompson.", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/funcscwclicnspracticalthomp08795313", "is_public":false, + "size":0, "created_at":"2026-04-09T13:29:15.918676Z", "updated_at":"2026-04-09T13:29:15.918676Z", + "image_count":0, "region":"fr-par"}, {"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", + "name":"cli-test-ctn-update-rg-img-jovial-raman", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T10:57:11.427266Z", + "image_count":2, "region":"fr-par"}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125904904, + "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-30T14:35:52.512165Z", + "image_count":6, "region":"fr-par"}, {"id":"1fb38b24-dbcc-4d67-9c27-cb374c085e55", + "name":"funcscwclicnspracticalthomp08795313", "description":"This Registry Namespace + was automatically created by the Serverless Containers product for the Serverless + Container namespacecli-cns-practical-thompson.", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/funcscwclicnspracticalthomp08795313", "is_public":false, + "size":0, "created_at":"2026-04-09T13:29:15.918676Z", "updated_at":"2026-04-09T13:29:15.918676Z", + "image_count":0, "region":"fr-par"}, {"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", + "name":"cli-test-ctn-update-rg-img-jovial-raman", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T10:57:11.427266Z", + "image_count":2, "region":"fr-par"}], "total_count":3}' + headers: + Content-Length: + - "1607" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3543290c-38c0-42d8-9bb8-dd7919b98a3a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac2f9fce-3736-4c4e-8dcc-5d4977a81580 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/7dd16df2-de1d-406f-8484-4e55553863a0 + method: GET + response: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa920abc-f49d-4c4f-8e11-0af2cb8b6402 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/7dd16df2-de1d-406f-8484-4e55553863a0 + method: GET + response: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T10:57:12.445755Z", + "region":"fr-par"}' + headers: + Content-Length: + - "408" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb22251c-1d87-403f-982d-d9dbdc45094d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64aa8351-d501-4311-8e60-ab5415d24e4e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dee4cd6b-7df9-4705-b79f-8f1d2aa3292c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bbc3d93-f55f-40c8-aaec-4b2cb84e88f6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30221eb5-08b3-4ce3-b0a7-aa8dc9a0f8a7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:58:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 979ec17c-83af-4d56-b2b9-830fcd1c1186 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:58:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49dad1c8-ac16-41e7-87f7-cb4a6d3676f6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:58:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b07b3691-f253-4450-b04b-83d072d68c56 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:58:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dcc304be-074b-49fb-be2a-eecad19e1591 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:59:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b80ff435-4fdf-4752-8967-716634c67803 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:59:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94fe8318-f528-49f4-91b1-492cc50cb061 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:59:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63bef600-e639-4e5a-ae60-d497da0a5680 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:59:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7af08d5f-8eb0-4c56-8cf4-39e3a7f8e02c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:00:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70420a04-3c74-4a1c-b5b9-e0c1d319e40f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:00:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 764f0e86-00c4-4b99-b7d3-dcbdb6032a0a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:00:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3344c8df-2374-4864-a767-e557fec5ae1b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:00:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbe47c05-10d8-4258-a7ab-99b1e6608c71 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:01:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b75de87d-b72d-4427-8dfd-6d361f2e4e08 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:01:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01505339-3e8f-44e1-9e05-6d2b0a5c5111 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:01:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64801f32-d8d9-4f05-b97a-00b8b3842496 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8bad721-82b8-446a-872d-136b632db2e4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"creating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T10:57:28.353739Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96dfadbe-f45b-4984-b957-97a871b870d0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"error", + "error_message":"Container is unable to start OR is not listening on port 80", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:29Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"error", + "error_message":"Container is unable to start OR is not listening on port 80", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:29Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/sebp/lighttpd:latest", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "1061" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24af83d7-a407-4c32-a2f8-cbbcc5350ec0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"updating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:30.588044Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: PATCH + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"updating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:30.588044Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "991" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d0bb70c-b825-4e0b-99c3-dc6137711497 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"updating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:30.588044Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"updating", + "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:30.588044Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "991" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7097e54-e9ca-4c7e-9492-9b18825ee9c8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:40Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/ead05389-38a1-4ad1-9a47-14ee4f3f49b7 + method: GET + response: + body: '{"id":"ead05389-38a1-4ad1-9a47-14ee4f3f49b7", "name":"cli-test-funny-archimedes", + "namespace_id":"7dd16df2-de1d-406f-8484-4e55553863a0", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T10:57:28.353739Z", "updated_at":"2026-04-20T11:02:40Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol":"http1", "port":80, "https_connections_only":false, "sandbox":"v2", + "local_storage_limit_bytes":1000000000, "scaling_option":{"concurrent_requests_threshold":50}, + "tags":[], "command":[], "args":[], "environment_variables":{}, "public_endpoint":"https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "1001" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aaa82a4f-c9a0-4c35-95c5-7000d2957b3d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T11:02:45.804930Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/7dd16df2-de1d-406f-8484-4e55553863a0 + method: DELETE + response: + body: '{"id":"7dd16df2-de1d-406f-8484-4e55553863a0", "name":"cli-ns-intelligent-morse", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:57:12.445755Z", "updated_at":"2026-04-20T11:02:45.804930Z", + "region":"fr-par"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a326aad-2a9f-426e-99ce-43f3604051e4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "name":"cli-test-ctn-update-rg-img-jovial-raman", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T11:02:47.512522131Z", + "image_count":2, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/4ee876f4-d5ef-4b20-a285-3a6563bf5b28 + method: DELETE + response: + body: '{"id":"4ee876f4-d5ef-4b20-a285-3a6563bf5b28", "name":"cli-test-ctn-update-rg-img-jovial-raman", + "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", + "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman", "is_public":false, + "size":27020587, "created_at":"2026-04-20T10:56:41.863258Z", "updated_at":"2026-04-20T11:02:47.512522131Z", + "image_count":2, "region":"fr-par"}' + headers: + Content-Length: + - "503" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 11:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe7e920e-53b5-4840-be5f-382365ecacc0 + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-update-container-registry-image.golden b/internal/namespaces/container/v1/testdata/test-update-container-registry-image.golden new file mode 100644 index 0000000000..3e48667d80 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-update-container-registry-image.golden @@ -0,0 +1,69 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID ead05389-38a1-4ad1-9a47-14ee4f3f49b7 +Name cli-test-funny-archimedes +NamespaceID 7dd16df2-de1d-406f-8484-4e55553863a0 +Description - +Status ready +ErrorMessage - +CreatedAt few seconds ago +UpdatedAt few seconds ago +MinScale 0 +MaxScale 5 +MemoryLimitBytes 2.0 GB +MvcpuLimit 1000 +LocalStorageLimitBytes 1.0 GB +Timeout 5 minutes +Privacy public +Image rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine +Protocol http1 +Port 80 +HTTPSConnectionsOnly false +Sandbox v2 +ScalingOption.ConcurrentRequestsThreshold 50 +LivenessProbe.FailureThreshold 30 +LivenessProbe.Interval 10 seconds +LivenessProbe.Timeout 1 seconds +PublicEndpoint https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud +Region fr-par +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "id": "ead05389-38a1-4ad1-9a47-14ee4f3f49b7", + "name": "cli-test-funny-archimedes", + "namespace_id": "7dd16df2-de1d-406f-8484-4e55553863a0", + "description": "", + "status": "ready", + "error_message": "", + "created_at": "1970-01-01T00:00:00.0Z", + "updated_at": "2026-04-20T11:02:40Z", + "environment_variables": {}, + "secret_environment_variables": {}, + "min_scale": 0, + "max_scale": 5, + "memory_limit_bytes": 2048000000, + "mvcpu_limit": 1000, + "local_storage_limit_bytes": 1000000000, + "timeout": "300.000000000s", + "privacy": "public", + "image": "rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-jovial-raman/nginx:1.29.2-alpine", + "protocol": "http1", + "port": 80, + "https_connections_only": false, + "sandbox": "v2", + "scaling_option": { + "concurrent_requests_threshold": 50 + }, + "liveness_probe": { + "failure_threshold": 30, + "interval": "10.000000000s", + "timeout": "1.000000000s", + "tcp": {} + }, + "startup_probe": null, + "tags": [], + "private_network_id": null, + "command": [], + "args": [], + "public_endpoint": "https://clinsintelligentmors7dd16df2-cli-test-funny-archimedes.functions.fnc.fr-par.scw.cloud", + "region": "fr-par" +} diff --git a/internal/namespaces/container/v1/testdata/test-update-container-simple.cassette.yaml b/internal/namespaces/container/v1/testdata/test-update-container-simple.cassette.yaml new file mode 100644 index 0000000000..e547c4cc89 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-update-container-simple.cassette.yaml @@ -0,0 +1,369 @@ +--- +version: 1 +interactions: +- request: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces + method: POST + response: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6cd29432-e0bb-44b1-b1e8-27adc7c677f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/1a3c297d-79a0-4d12-a5a2-c26d3512e550 + method: GET + response: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"creating", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 173222d9-9988-48b9-8e94-116725d9e252 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/1a3c297d-79a0-4d12-a5a2-c26d3512e550 + method: GET + response: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"ready", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:56:42.064905Z", + "region":"fr-par"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0960cc87-9641-450e-a78d-eab093a0ed1e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:56:57.975906Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers + method: POST + response: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:56:57.975906Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "921" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e984f5aa-a7df-4f85-8425-7463458fb421 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:56:57.975906Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/8de1d6d9-10cf-46f1-b909-750b13d967af + method: GET + response: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"creating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:56:57.975906Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "921" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:56:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2359fd91-ca7a-4cb5-b61a-452e6e0ddc21 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:57:09Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/8de1d6d9-10cf-46f1-b909-750b13d967af + method: GET + response: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"ready", + "error_message":"", "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:57:09Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1000, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":80, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":[], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "931" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65632a55-308b-45e7-8ce1-63250528997d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"updating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:57:13.409584Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1500, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":8080, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":["new_tag"], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/containers/8de1d6d9-10cf-46f1-b909-750b13d967af + method: PATCH + response: + body: '{"id":"8de1d6d9-10cf-46f1-b909-750b13d967af", "name":"cli-test-gracious-austin", + "namespace_id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "description":"", "status":"updating", + "created_at":"2026-04-20T10:56:57.975906Z", "updated_at":"2026-04-20T10:57:13.409584Z", + "min_scale":0, "max_scale":5, "memory_limit_bytes":2048000000, "mvcpu_limit":1500, + "timeout":"300s", "privacy":"public", "image":"nginx:latest", "protocol":"http1", + "port":8080, "https_connections_only":false, "sandbox":"v2", "local_storage_limit_bytes":1000000000, + "scaling_option":{"concurrent_requests_threshold":50}, "tags":["new_tag"], "command":[], + "args":[], "environment_variables":{}, "public_endpoint":"https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "liveness_probe":{"failure_threshold":30, "interval":"10s", "timeout":"1s", + "tcp":{}}, "startup_probe":null, "secret_environment_variables":{}, "region":"fr-par"}' + headers: + Content-Length: + - "932" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfe77cc6-0be2-4c05-a86e-bf506f3d03b4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:57:13.490985Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/containers/v1/regions/fr-par/namespaces/1a3c297d-79a0-4d12-a5a2-c26d3512e550 + method: DELETE + response: + body: '{"id":"1a3c297d-79a0-4d12-a5a2-c26d3512e550", "name":"cli-ns-quirky-poincare", + "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", + "description":"", "status":"deleting", "environment_variables":{}, "secret_environment_variables":{}, + "tags":[], "created_at":"2026-04-20T10:56:42.064905Z", "updated_at":"2026-04-20T10:57:13.490985Z", + "region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 20 Apr 2026 10:57:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47b91f58-8905-4ef9-ad82-abc5faf8c8c1 + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/container/v1/testdata/test-update-container-simple.golden b/internal/namespaces/container/v1/testdata/test-update-container-simple.golden new file mode 100644 index 0000000000..f0452cf0c8 --- /dev/null +++ b/internal/namespaces/container/v1/testdata/test-update-container-simple.golden @@ -0,0 +1,71 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID 8de1d6d9-10cf-46f1-b909-750b13d967af +Name cli-test-gracious-austin +NamespaceID 1a3c297d-79a0-4d12-a5a2-c26d3512e550 +Description - +Status updating +CreatedAt few seconds ago +UpdatedAt few seconds ago +MinScale 0 +MaxScale 5 +MemoryLimitBytes 2.0 GB +MvcpuLimit 1500 +LocalStorageLimitBytes 1.0 GB +Timeout 5 minutes +Privacy public +Image nginx:latest +Protocol http1 +Port 8080 +HTTPSConnectionsOnly false +Sandbox v2 +ScalingOption.ConcurrentRequestsThreshold 50 +LivenessProbe.FailureThreshold 30 +LivenessProbe.Interval 10 seconds +LivenessProbe.Timeout 1 seconds +Tags.0 new_tag +PublicEndpoint https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud +Region fr-par +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "id": "8de1d6d9-10cf-46f1-b909-750b13d967af", + "name": "cli-test-gracious-austin", + "namespace_id": "1a3c297d-79a0-4d12-a5a2-c26d3512e550", + "description": "", + "status": "updating", + "error_message": null, + "created_at": "1970-01-01T00:00:00.0Z", + "updated_at": "1970-01-01T00:00:00.0Z", + "environment_variables": {}, + "secret_environment_variables": {}, + "min_scale": 0, + "max_scale": 5, + "memory_limit_bytes": 2048000000, + "mvcpu_limit": 1500, + "local_storage_limit_bytes": 1000000000, + "timeout": "300.000000000s", + "privacy": "public", + "image": "nginx:latest", + "protocol": "http1", + "port": 8080, + "https_connections_only": false, + "sandbox": "v2", + "scaling_option": { + "concurrent_requests_threshold": 50 + }, + "liveness_probe": { + "failure_threshold": 30, + "interval": "10.000000000s", + "timeout": "1.000000000s", + "tcp": {} + }, + "startup_probe": null, + "tags": [ + "new_tag" + ], + "private_network_id": null, + "command": [], + "args": [], + "public_endpoint": "https://clinsquirkypoincare1a3c297d-cli-test-gracious-austin.functions.fnc.fr-par.scw.cloud", + "region": "fr-par" +} diff --git a/internal/namespaces/container/v1beta1/container_cli.go b/internal/namespaces/container/v1beta1/container_cli.go deleted file mode 100644 index 9877f1e48b..0000000000 --- a/internal/namespaces/container/v1beta1/container_cli.go +++ /dev/null @@ -1,1952 +0,0 @@ -// This file was automatically generated. DO NOT EDIT. -// If you have any remark or suggestion do not hesitate to open an issue. - -package container - -import ( - "context" - "reflect" - - "github.com/scaleway/scaleway-cli/v2/core" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" - "github.com/scaleway/scaleway-sdk-go/scw" -) - -// always import dependencies -var ( - _ = scw.RegionFrPar -) - -func GetGeneratedCommands() *core.Commands { - return core.NewCommands( - containerRoot(), - containerNamespace(), - containerContainer(), - containerCron(), - containerDomain(), - containerToken(), - containerTrigger(), - containerNamespaceList(), - containerNamespaceGet(), - containerNamespaceCreate(), - containerNamespaceUpdate(), - containerNamespaceDelete(), - containerContainerList(), - containerContainerGet(), - containerContainerCreate(), - containerContainerUpdate(), - containerContainerDelete(), - containerContainerDeploy(), - containerCronList(), - containerCronGet(), - containerCronCreate(), - containerCronUpdate(), - containerCronDelete(), - containerDomainList(), - containerDomainGet(), - containerDomainCreate(), - containerDomainDelete(), - containerTokenCreate(), - containerTokenGet(), - containerTokenList(), - containerTokenDelete(), - containerTriggerCreate(), - containerTriggerGet(), - containerTriggerList(), - containerTriggerUpdate(), - containerTriggerDelete(), - ) -} - -func containerRoot() *core.Command { - return &core.Command{ - Short: `This API allows you to manage your Serverless Containers`, - Long: `This API allows you to manage your Serverless Containers.`, - Namespace: "container", - } -} - -func containerNamespace() *core.Command { - return &core.Command{ - Short: `Namespace management commands`, - Long: `Namespace management commands.`, - Namespace: "container", - Resource: "namespace", - } -} - -func containerContainer() *core.Command { - return &core.Command{ - Short: `Container management commands`, - Long: `Container management commands.`, - Namespace: "container", - Resource: "container", - } -} - -func containerCron() *core.Command { - return &core.Command{ - Short: `Cron management commands`, - Long: `Cron management commands.`, - Namespace: "container", - Resource: "cron", - } -} - -func containerDomain() *core.Command { - return &core.Command{ - Short: `Domain management commands`, - Long: `Domain management commands.`, - Namespace: "container", - Resource: "domain", - } -} - -func containerToken() *core.Command { - return &core.Command{ - Short: `Token management commands`, - Long: `Token management commands.`, - Namespace: "container", - Resource: "token", - } -} - -func containerTrigger() *core.Command { - return &core.Command{ - Short: `Trigger management commands`, - Long: `Trigger management commands.`, - Namespace: "container", - Resource: "trigger", - } -} - -func containerNamespaceList() *core.Command { - return &core.Command{ - Short: `List all your namespaces`, - Long: `List all namespaces in a specified region.`, - Namespace: "container", - Resource: "namespace", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListNamespacesRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order of the namespaces`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - "name_asc", - "name_desc", - }, - }, - { - Name: "name", - Short: `Name of the namespaces`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "project-id", - Short: `UUID of the Project the namespace belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "organization-id", - Short: `UUID of the Organization the namespace belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListNamespacesRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListNamespaces(request, opts...) - if err != nil { - return nil, err - } - - return resp.Namespaces, nil - }, - } -} - -func containerNamespaceGet() *core.Command { - return &core.Command{ - Short: `Get a namespace`, - Long: `Get the namespace associated with the specified ID.`, - Namespace: "container", - Resource: "namespace", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetNamespaceRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "namespace-id", - Short: `UUID of the namespace to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetNamespaceRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetNamespace(request) - }, - } -} - -func containerNamespaceCreate() *core.Command { - return &core.Command{ - Short: `Create a new namespace`, - Long: `Create a new namespace in a specified region.`, - Namespace: "container", - Resource: "namespace", - Verb: "create", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.CreateNamespaceRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "name", - Short: `Name of the namespace to create`, - Required: false, - Deprecated: false, - Positional: false, - Default: core.RandomValueGenerator("cns"), - }, - { - Name: "environment-variables.{key}", - Short: `Environment variables of the namespace to create`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.ProjectIDArgSpec(), - { - Name: "description", - Short: `Description of the namespace to create`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.key", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.value", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "tags.{index}", - Short: `Tags of the Serverless Container Namespace`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "activate-vpc-integration", - Short: `[DEPRECATED] By default, as of 2025/08/20, all namespaces are now compatible with VPC.`, - Required: false, - Deprecated: true, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateNamespaceRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateNamespace(request) - }, - } -} - -func containerNamespaceUpdate() *core.Command { - return &core.Command{ - Short: `Update an existing namespace`, - Long: `Update the space associated with the specified ID.`, - Namespace: "container", - Resource: "namespace", - Verb: "update", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.UpdateNamespaceRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "namespace-id", - Short: `UUID of the namespace to update`, - Required: true, - Deprecated: false, - Positional: true, - }, - { - Name: "environment-variables.{key}", - Short: `Environment variables of the namespace to update`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "description", - Short: `Description of the namespace to update`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.key", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.value", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "tags.{index}", - Short: `Tags of the Serverless Container Namespace`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.UpdateNamespaceRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.UpdateNamespace(request) - }, - } -} - -func containerNamespaceDelete() *core.Command { - return &core.Command{ - Short: `Delete an existing namespace`, - Long: `Delete the namespace associated with the specified ID.`, - Namespace: "container", - Resource: "namespace", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteNamespaceRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "namespace-id", - Short: `UUID of the namespace to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteNamespaceRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteNamespace(request) - }, - } -} - -func containerContainerList() *core.Command { - return &core.Command{ - Short: `List all your containers`, - Long: `List all containers for a specified region.`, - Namespace: "container", - Resource: "container", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListContainersRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order of the containers`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - "name_asc", - "name_desc", - }, - }, - { - Name: "namespace-id", - Short: `UUID of the namespace the container belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "name", - Short: `Name of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "project-id", - Short: `UUID of the Project the container belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "organization-id", - Short: `UUID of the Organization the container belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListContainersRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListContainers(request, opts...) - if err != nil { - return nil, err - } - - return resp.Containers, nil - }, - } -} - -func containerContainerGet() *core.Command { - return &core.Command{ - Short: `Get a container`, - Long: `Get the container associated with the specified ID.`, - Namespace: "container", - Resource: "container", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetContainerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetContainerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetContainer(request) - }, - } -} - -func containerContainerCreate() *core.Command { - return &core.Command{ - Short: `Create a new container`, - Long: `Create a new container in the specified region. - -When creating a container, the ` + "`" + `created` + "`" + ` status is no longer used. The deployment process is started -and the status is set to ` + "`" + `pending` + "`" + ` accordingly.`, - Namespace: "container", - Resource: "container", - Verb: "create", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.CreateContainerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "namespace-id", - Short: `UUID of the namespace the container belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "name", - Short: `Name of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "environment-variables.{key}", - Short: `Environment variables of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "min-scale", - Short: `Minimum number of instances to scale the container to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "max-scale", - Short: `Maximum number of instances to scale the container to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "memory-limit", - Short: `Memory limit of the container in MB`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "cpu-limit", - Short: `CPU limit of the container in mvCPU`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "timeout", - Short: `Processing time limit for the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "privacy", - Short: `Privacy setting of the container`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_privacy", - "public", - "private", - }, - }, - { - Name: "description", - Short: `Description of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "registry-image", - Short: `Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag").`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "max-concurrency", - Short: `Number of maximum concurrent executions of the container`, - Required: false, - Deprecated: true, - Positional: false, - }, - { - Name: "protocol", - Short: `Protocol the container uses`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_protocol", - "http1", - "h2c", - }, - }, - { - Name: "port", - Short: `Port the container listens on`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.key", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.value", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "http-option", - Short: `Configure how HTTP and HTTPS requests are handled`, - Required: false, - Deprecated: false, - Positional: false, - Default: core.DefaultValueSetter("enabled"), - EnumValues: []string{ - "unknown_http_option", - "enabled", - "redirected", - }, - }, - { - Name: "sandbox", - Short: `Execution environment of the container`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_sandbox", - "v1", - "v2", - }, - }, - { - Name: "local-storage-limit", - Short: `Local storage limit of the container (in MB)`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.concurrent-requests-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.cpu-usage-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.memory-usage-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.http.path", - Short: `Path to use for the HTTP health check.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.failure-threshold", - Short: `Number of consecutive health check failures before considering the container unhealthy.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.interval", - Short: `Period between health checks.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "tags.{index}", - Short: `Tags of the Serverless Container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "private-network-id", - Short: `ID of the Private Network the container is connected to.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "command.{index}", - Short: `Container command`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "args.{index}", - Short: `Container arguments`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateContainerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateContainer(request) - }, - } -} - -func containerContainerUpdate() *core.Command { - return &core.Command{ - Short: `Update an existing container`, - Long: `Update the container associated with the specified ID. - -When updating a container, the container is automatically redeployed to apply the changes. - -Warning: The ` + "`" + `redeploy` + "`" + ` field has been deprecated. An update now always redeploys the container.`, - Namespace: "container", - Resource: "container", - Verb: "update", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.UpdateContainerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to update`, - Required: true, - Deprecated: false, - Positional: true, - }, - { - Name: "environment-variables.{key}", - Short: `Environment variables of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "min-scale", - Short: `Minimum number of instances to scale the container to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "max-scale", - Short: `Maximum number of instances to scale the container to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "memory-limit", - Short: `Memory limit of the container in MB`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "cpu-limit", - Short: `CPU limit of the container in mvCPU`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "timeout", - Short: `Processing time limit for the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "redeploy", - Short: `Defines whether to redeploy failed containers`, - Required: false, - Deprecated: true, - Positional: false, - }, - { - Name: "privacy", - Short: `Privacy settings of the container`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_privacy", - "public", - "private", - }, - }, - { - Name: "description", - Short: `Description of the container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "registry-image", - Short: `Name of the registry image (e.g. "rg.fr-par.scw.cloud/something/image:tag").`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "max-concurrency", - Short: `Number of maximum concurrent executions of the container`, - Required: false, - Deprecated: true, - Positional: false, - }, - { - Name: "protocol", - Short: `Protocol the container uses`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_protocol", - "http1", - "h2c", - }, - }, - { - Name: "port", - Short: `Port the container listens on`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.key", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "secret-environment-variables.{index}.value", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "http-option", - Short: `Configure how HTTP and HTTPS requests are handled`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_http_option", - "enabled", - "redirected", - }, - }, - { - Name: "sandbox", - Short: `Execution environment of the container`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "unknown_sandbox", - "v1", - "v2", - }, - }, - { - Name: "local-storage-limit", - Short: `Local storage limit of the container (in MB)`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.concurrent-requests-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.cpu-usage-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scaling-option.memory-usage-threshold", - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.http.path", - Short: `Path to use for the HTTP health check.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.failure-threshold", - Short: `Number of consecutive health check failures before considering the container unhealthy.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "health-check.interval", - Short: `Period between health checks.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "tags.{index}", - Short: `Tags of the Serverless Container`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "private-network-id", - Short: `ID of the Private Network the container is connected to.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "command.{index}", - Short: `Container command`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "args.{index}", - Short: `Container arguments`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.UpdateContainerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.UpdateContainer(request) - }, - } -} - -func containerContainerDelete() *core.Command { - return &core.Command{ - Short: `Delete a container`, - Long: `Delete the container associated with the specified ID.`, - Namespace: "container", - Resource: "container", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteContainerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteContainerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteContainer(request) - }, - } -} - -func containerContainerDeploy() *core.Command { - return &core.Command{ - Short: `Deploy a container`, - Long: `Deploy a container associated with the specified ID. - -Since updating a container now always deploys it (and passes its status to ` + "`" + `pending` + "`" + `), this call becomes superfluous. - -Moreover, calling ` + "`" + `DeployContainer` + "`" + ` immediately after ` + "`" + `UpdateContainer` + "`" + ` can cause ` + "`" + `409 - resource is in a transient state` + "`" + ` errors, so it is better to not use it when updating a container.`, - Namespace: "container", - Resource: "container", - Verb: "deploy", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeployContainerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to deploy`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeployContainerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeployContainer(request) - }, - } -} - -func containerCronList() *core.Command { - return &core.Command{ - Short: `List all your crons`, - Long: `List all your crons.`, - Namespace: "container", - Resource: "cron", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListCronsRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order of the crons`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - }, - }, - { - Name: "container-id", - Short: `UUID of the container invoked by the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListCronsRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListCrons(request, opts...) - if err != nil { - return nil, err - } - - return resp.Crons, nil - }, - } -} - -func containerCronGet() *core.Command { - return &core.Command{ - Short: `Get a cron`, - Long: `Get the cron associated with the specified ID.`, - Namespace: "container", - Resource: "cron", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetCronRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "cron-id", - Short: `UUID of the cron to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetCronRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetCron(request) - }, - } -} - -func containerCronCreate() *core.Command { - return &core.Command{ - Short: `Create a new cron`, - Long: `Create a new cron.`, - Namespace: "container", - Resource: "cron", - Verb: "create", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.CreateCronRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to invoke by the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "schedule", - Short: `UNIX cron schedule`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "args", - Short: `Arguments to pass with the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "name", - Short: `Name of the cron to create`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateCronRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateCron(request) - }, - } -} - -func containerCronUpdate() *core.Command { - return &core.Command{ - Short: `Update an existing cron`, - Long: `Update the cron associated with the specified ID.`, - Namespace: "container", - Resource: "cron", - Verb: "update", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.UpdateCronRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "cron-id", - Short: `UUID of the cron to update`, - Required: true, - Deprecated: false, - Positional: true, - }, - { - Name: "container-id", - Short: `UUID of the container invoked by the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "schedule", - Short: `UNIX cron schedule`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "args", - Short: `Arguments to pass with the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "name", - Short: `Name of the cron`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.UpdateCronRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.UpdateCron(request) - }, - } -} - -func containerCronDelete() *core.Command { - return &core.Command{ - Short: `Delete an existing cron`, - Long: `Delete the cron associated with the specified ID.`, - Namespace: "container", - Resource: "cron", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteCronRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "cron-id", - Short: `UUID of the cron to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteCronRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteCron(request) - }, - } -} - -func containerDomainList() *core.Command { - return &core.Command{ - Short: `List all custom domains`, - Long: `List all custom domains in a specified region.`, - Namespace: "container", - Resource: "domain", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListDomainsRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order of the domains`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - "hostname_asc", - "hostname_desc", - }, - }, - { - Name: "container-id", - Short: `UUID of the container the domain belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListDomainsRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListDomains(request, opts...) - if err != nil { - return nil, err - } - - return resp.Domains, nil - }, - } -} - -func containerDomainGet() *core.Command { - return &core.Command{ - Short: `Get a custom domain`, - Long: `Get a custom domain for the container with the specified ID.`, - Namespace: "container", - Resource: "domain", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetDomainRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "domain-id", - Short: `UUID of the domain to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetDomainRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetDomain(request) - }, - } -} - -func containerDomainCreate() *core.Command { - return &core.Command{ - Short: `Create a custom domain`, - Long: `Create a custom domain for the container with the specified ID.`, - Namespace: "container", - Resource: "domain", - Verb: "create", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.CreateDomainRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "hostname", - Short: `Domain to assign`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "container-id", - Short: `UUID of the container to assign the domain to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateDomainRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateDomain(request) - }, - } -} - -func containerDomainDelete() *core.Command { - return &core.Command{ - Short: `Delete a custom domain`, - Long: `Delete the custom domain with the specific ID.`, - Namespace: "container", - Resource: "domain", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteDomainRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "domain-id", - Short: `UUID of the domain to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteDomainRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteDomain(request) - }, - } -} - -func containerTokenCreate() *core.Command { - return &core.Command{ - Short: `Create a new revocable token`, - Long: `Deprecated in favor of IAM authentication.`, - Namespace: "container", - Resource: "token", - Verb: "create", - // Deprecated: true, - ArgsType: reflect.TypeOf(container.CreateTokenRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "container-id", - Short: `UUID of the container to create the token for`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "namespace-id", - Short: `UUID of the namespace to create the token for`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "description", - Short: `Description of the token`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "expires-at", - Short: `Expiry date of the token`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateTokenRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateToken(request) - }, - } -} - -func containerTokenGet() *core.Command { - return &core.Command{ - Short: `Get a token`, - Long: `Get a token with a specified ID.`, - Namespace: "container", - Resource: "token", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetTokenRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "token-id", - Short: `UUID of the token to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetTokenRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetToken(request) - }, - } -} - -func containerTokenList() *core.Command { - return &core.Command{ - Short: `List all tokens`, - Long: `List all tokens belonging to a specified Organization or Project.`, - Namespace: "container", - Resource: "token", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListTokensRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order of the tokens`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - }, - }, - { - Name: "container-id", - Short: `UUID of the container the token belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "namespace-id", - Short: `UUID of the namespace the token belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListTokensRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListTokens(request, opts...) - if err != nil { - return nil, err - } - - return resp.Tokens, nil - }, - } -} - -func containerTokenDelete() *core.Command { - return &core.Command{ - Short: `Delete a token`, - Long: `Delete a token with a specified ID.`, - Namespace: "container", - Resource: "token", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteTokenRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "token-id", - Short: `UUID of the token to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteTokenRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteToken(request) - }, - } -} - -func containerTriggerCreate() *core.Command { - return &core.Command{ - Short: `Create a trigger`, - Long: `Create a new trigger for a specified container.`, - Namespace: "container", - Resource: "trigger", - Verb: "create", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.CreateTriggerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "name", - Short: `Name of the trigger`, - Required: true, - Deprecated: false, - Positional: false, - }, - { - Name: "container-id", - Short: `ID of the container to trigger`, - Required: true, - Deprecated: false, - Positional: false, - }, - { - Name: "description", - Short: `Description of the trigger`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-sqs-config.queue", - Short: `Name of the SQS queue the trigger should listen to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-sqs-config.mnq-project-id", - Short: `ID of the Messaging and Queuing project`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-sqs-config.mnq-region", - Short: `Region in which the Messaging and Queuing project is activated.`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-nats-config.subject", - Short: `Name of the NATS subject the trigger should listen to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-nats-config.mnq-nats-account-id", - Short: `ID of the Messaging and Queuing NATS account`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-nats-config.mnq-project-id", - Short: `ID of the Messaging and Queuing project`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "scw-nats-config.mnq-region", - Short: `Region in which the Messaging and Queuing project is activated.`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.CreateTriggerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.CreateTrigger(request) - }, - } -} - -func containerTriggerGet() *core.Command { - return &core.Command{ - Short: `Get a trigger`, - Long: `Get a trigger with a specified ID.`, - Namespace: "container", - Resource: "trigger", - Verb: "get", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.GetTriggerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "trigger-id", - Short: `ID of the trigger to get`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.GetTriggerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.GetTrigger(request) - }, - } -} - -func containerTriggerList() *core.Command { - return &core.Command{ - Short: `List all triggers`, - Long: `List all triggers belonging to a specified Organization or Project.`, - Namespace: "container", - Resource: "trigger", - Verb: "list", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.ListTriggersRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "order-by", - Short: `Order in which to return results`, - Required: false, - Deprecated: false, - Positional: false, - EnumValues: []string{ - "created_at_asc", - "created_at_desc", - }, - }, - { - Name: "container-id", - Short: `ID of the container the triggers belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "namespace-id", - Short: `ID of the namespace the triggers belongs to`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.ProjectIDArgSpec(), - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - scw.Region(core.AllLocalities), - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.ListTriggersRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - opts := []scw.RequestOption{scw.WithAllPages()} - if request.Region == scw.Region(core.AllLocalities) { - opts = append(opts, scw.WithRegions(api.Regions()...)) - request.Region = "" - } - resp, err := api.ListTriggers(request, opts...) - if err != nil { - return nil, err - } - - return resp.Triggers, nil - }, - } -} - -func containerTriggerUpdate() *core.Command { - return &core.Command{ - Short: `Update a trigger`, - Long: `Update a trigger with a specified ID.`, - Namespace: "container", - Resource: "trigger", - Verb: "update", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.UpdateTriggerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "trigger-id", - Short: `ID of the trigger to update`, - Required: true, - Deprecated: false, - Positional: true, - }, - { - Name: "name", - Short: `Name of the trigger`, - Required: false, - Deprecated: false, - Positional: false, - }, - { - Name: "description", - Short: `Description of the trigger`, - Required: false, - Deprecated: false, - Positional: false, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.UpdateTriggerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.UpdateTrigger(request) - }, - } -} - -func containerTriggerDelete() *core.Command { - return &core.Command{ - Short: `Delete a trigger`, - Long: `Delete a trigger with a specified ID.`, - Namespace: "container", - Resource: "trigger", - Verb: "delete", - // Deprecated: false, - ArgsType: reflect.TypeOf(container.DeleteTriggerRequest{}), - ArgSpecs: core.ArgSpecs{ - { - Name: "trigger-id", - Short: `ID of the trigger to delete`, - Required: true, - Deprecated: false, - Positional: true, - }, - core.RegionArgSpec( - scw.RegionFrPar, - scw.RegionNlAms, - scw.RegionPlWaw, - ), - }, - Run: func(ctx context.Context, args any) (i any, e error) { - request := args.(*container.DeleteTriggerRequest) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.DeleteTrigger(request) - }, - } -} diff --git a/internal/namespaces/container/v1beta1/custom_container.go b/internal/namespaces/container/v1beta1/custom_container.go deleted file mode 100644 index 4cab9543a6..0000000000 --- a/internal/namespaces/container/v1beta1/custom_container.go +++ /dev/null @@ -1,93 +0,0 @@ -package container - -import ( - "context" - "reflect" - "time" - - "github.com/fatih/color" - "github.com/scaleway/scaleway-cli/v2/core" - "github.com/scaleway/scaleway-cli/v2/core/human" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" - "github.com/scaleway/scaleway-sdk-go/scw" -) - -var ( - containerDeployTimeout = 12*time.Minute + 30*time.Second - - containerStatusMarshalSpecs = human.EnumMarshalSpecs{ - container.ContainerStatusCreated: &human.EnumMarshalSpec{Attribute: color.FgGreen}, - container.ContainerStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.ContainerStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.ContainerStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.ContainerStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.ContainerStatusPending: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.ContainerStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, - container.ContainerStatusUnknown: &human.EnumMarshalSpec{Attribute: color.Faint}, - } -) - -func waitForContainer(ctx context.Context, _, respI any) (any, error) { - c := respI.(*container.Container) - - client := core.ExtractClient(ctx) - api := container.NewAPI(client) - - return api.WaitForContainer(&container.WaitForContainerRequest{ - ContainerID: c.ID, - Region: c.Region, - Timeout: new(containerDeployTimeout), - RetryInterval: core.DefaultRetryInterval, - }) -} - -func containerContainerDeployBuilder(command *core.Command) *core.Command { - command.WaitFunc = waitForContainer - - return command -} - -func containerContainerCreateBuilder(command *core.Command) *core.Command { - // Add an interceptor that will deploy container after it was created - type CustomCreateContainerRequest struct { - *container.CreateContainerRequest - Deploy bool `json:"deploy"` - } - - command.ArgSpecs.AddBefore("region", &core.ArgSpec{ - Name: "deploy", - Short: "Deploy container after creation", - Required: false, - Default: core.DefaultValueSetter("true"), - }) - - command.ArgsType = reflect.TypeOf(CustomCreateContainerRequest{}) - - command.AddInterceptors( - func(ctx context.Context, argsI any, runner core.CommandRunner) (any, error) { - args := argsI.(*CustomCreateContainerRequest) - resI, err := runner(ctx, args.CreateContainerRequest) - if err != nil { - return resI, err - } - - c := resI.(*container.Container) - containerAPI := container.NewAPI(core.ExtractClient(ctx)) - - return containerAPI.DeployContainer(&container.DeployContainerRequest{ - Region: c.Region, - ContainerID: c.ID, - }, scw.WithContext(ctx)) - }, - ) - - command.WaitFunc = waitForContainer - - return command -} - -func containerContainerUpdateBuilder(command *core.Command) *core.Command { - command.WaitFunc = waitForContainer - - return command -} diff --git a/internal/namespaces/container/v1beta1/custom_cron.go b/internal/namespaces/container/v1beta1/custom_cron.go deleted file mode 100644 index aac8738c85..0000000000 --- a/internal/namespaces/container/v1beta1/custom_cron.go +++ /dev/null @@ -1,17 +0,0 @@ -package container - -import ( - "github.com/fatih/color" - "github.com/scaleway/scaleway-cli/v2/core/human" - container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" -) - -var cronStatusMarshalSpecs = human.EnumMarshalSpecs{ - container.CronStatusCreating: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.CronStatusDeleting: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.CronStatusError: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.CronStatusLocked: &human.EnumMarshalSpec{Attribute: color.FgRed}, - container.CronStatusPending: &human.EnumMarshalSpec{Attribute: color.FgBlue}, - container.CronStatusReady: &human.EnumMarshalSpec{Attribute: color.FgGreen}, - container.CronStatusUnknown: &human.EnumMarshalSpec{Attribute: color.Faint}, -} diff --git a/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.cassette.yaml deleted file mode 100644 index 01585ccbdc..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.cassette.yaml +++ /dev/null @@ -1,365 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814012Z", "updated_at":"2025-10-23T08:57:41.103814012Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814012Z", "updated_at":"2025-10-23T08:57:41.103814012Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "521" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4bbb36ba-ef24-4314-b016-67d1f2ae1264 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:41.103814Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f29e7425-baaf-4d5e-9fde-807f822c4f9b - method: GET - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:41.103814Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5489ea39-b316-40c0-a867-9b0c19b464a7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:45.574019Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f29e7425-baaf-4d5e-9fde-807f822c4f9b - method: GET - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:45.574019Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d565d54-4fd7-4631-8b3a-e115a414354a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:45.574019Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f29e7425-baaf-4d5e-9fde-807f822c4f9b - method: GET - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", "updated_at":"2025-10-23T08:57:45.574019Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cec59e82-6f2f-4d8f-923e-1f5dfd29a850 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"dfddb0c3-6da4-4f8d-8956-7533f95e7de4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", - "updated_at":"2025-10-23T08:57:51.775457Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f29e7425-baaf-4d5e-9fde-807f822c4f9b - method: GET - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"dfddb0c3-6da4-4f8d-8956-7533f95e7de4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", - "updated_at":"2025-10-23T08:57:51.775457Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b2fd6d98-f6d9-4e3e-9bd4-a2f66454c0d0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"a5c124fd-b498-467a-a1d6-2c6f75b575ac", "name":"cli-test-bold-ishizaka", - "namespace_id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest", - "max_concurrency":50, "domain_name":"clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:57:56.438051175Z", "updated_at":"2025-10-23T08:57:56.438051175Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"a5c124fd-b498-467a-a1d6-2c6f75b575ac", "name":"cli-test-bold-ishizaka", - "namespace_id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest", - "max_concurrency":50, "domain_name":"clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:57:56.438051175Z", "updated_at":"2025-10-23T08:57:56.438051175Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17b29e4a-513e-419c-bc25-967a9d723ac8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"a5c124fd-b498-467a-a1d6-2c6f75b575ac", "name":"cli-test-bold-ishizaka", - "namespace_id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest", - "max_concurrency":50, "domain_name":"clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:57:56.438051Z", "updated_at":"2025-10-23T08:57:56.532674731Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/a5c124fd-b498-467a-a1d6-2c6f75b575ac/deploy - method: POST - response: - body: '{"id":"a5c124fd-b498-467a-a1d6-2c6f75b575ac", "name":"cli-test-bold-ishizaka", - "namespace_id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest", - "max_concurrency":50, "domain_name":"clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:57:56.438051Z", "updated_at":"2025-10-23T08:57:56.532674731Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30d24e8a-837b-46e3-aefc-0fd84d333904 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"dfddb0c3-6da4-4f8d-8956-7533f95e7de4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", - "updated_at":"2025-10-23T08:57:56.619357190Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f29e7425-baaf-4d5e-9fde-807f822c4f9b - method: DELETE - response: - body: '{"id":"f29e7425-baaf-4d5e-9fde-807f822c4f9b", "name":"cli-cns-modest-booth", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"dfddb0c3-6da4-4f8d-8956-7533f95e7de4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:57:41.103814Z", - "updated_at":"2025-10-23T08:57:56.619357190Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "607" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:57:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5795f98b-6e8d-4ade-8b40-1b913a7a69f5 - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.golden b/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.golden deleted file mode 100644 index ce57d9fcec..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-create-container-simple.golden +++ /dev/null @@ -1,68 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID a5c124fd-b498-467a-a1d6-2c6f75b575ac -Name cli-test-bold-ishizaka -NamespaceID f29e7425-baaf-4d5e-9fde-807f822c4f9b -Status pending -MinScale 0 -MaxScale 5 -MemoryLimit 2048 -CPULimit 1000 -Timeout 5 minutes -Privacy public -Description - -RegistryImage rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest -MaxConcurrency 50 -DomainName clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud -Protocol http1 -Port 8080 -HTTPOption enabled -Sandbox v2 -LocalStorageLimit 1000 -ScalingOption.ConcurrentRequestsThreshold 50 -HealthCheck.FailureThreshold 30 -HealthCheck.Interval 10 seconds -CreatedAt few seconds ago -UpdatedAt few seconds ago -Region fr-par -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -{ - "id": "a5c124fd-b498-467a-a1d6-2c6f75b575ac", - "name": "cli-test-bold-ishizaka", - "namespace_id": "f29e7425-baaf-4d5e-9fde-807f822c4f9b", - "status": "pending", - "environment_variables": {}, - "min_scale": 0, - "max_scale": 5, - "memory_limit": 2048, - "cpu_limit": 1000, - "timeout": "300.000000000s", - "error_message": null, - "privacy": "public", - "description": "", - "registry_image": "rg.fr-par.scw.cloud/funcscwclicnsmodestboothuodegdpe/cli-test-bold-ishizaka:latest", - "max_concurrency": 50, - "domain_name": "clicnsmodestboothuodegdpe-cli-test-bold-ishizaka.functions.fnc.fr-par.scw.cloud", - "protocol": "http1", - "port": 8080, - "secret_environment_variables": [], - "http_option": "enabled", - "sandbox": "v2", - "local_storage_limit": 1000, - "scaling_option": { - "concurrent_requests_threshold": 50 - }, - "health_check": { - "tcp": {}, - "failure_threshold": 30, - "interval": "10.000000000s" - }, - "created_at": "1970-01-01T00:00:00.0Z", - "updated_at": "1970-01-01T00:00:00.0Z", - "ready_at": null, - "region": "fr-par", - "tags": [], - "private_network_id": null, - "command": [], - "args": [] -} diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml deleted file mode 100644 index 5400d33f16..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-app-name-deduced-from-path.cassette.yaml +++ /dev/null @@ -1,845 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=app-cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3690cb84-93fa-4fce-b7d8-1993aa9f992d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:27:15.762510361Z", "updated_at":"2025-12-15T13:27:15.762510361Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:27:15.762510361Z", "updated_at":"2025-12-15T13:27:15.762510361Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "525" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 374252a4-bd41-4f2d-b56d-d161de6e21d6 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", "updated_at":"2025-12-15T13:27:15.762510Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/18240f6a-c906-43d5-a628-39908c92a488 - method: GET - response: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", "updated_at":"2025-12-15T13:27:15.762510Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7e36d44f-7bca-4896-879e-6996eb6a2a8e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"0372458e-76e7-425e-b787-2889278838d4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", - "updated_at":"2025-12-15T13:27:20.998226Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/18240f6a-c906-43d5-a628-39908c92a488 - method: GET - response: - body: '{"id":"18240f6a-c906-43d5-a628-39908c92a488", "name":"app-cli-t-ctnr-deploy-fp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"0372458e-76e7-425e-b787-2889278838d4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:27:15.762510Z", - "updated_at":"2025-12-15T13:27:20.998226Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "607" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4225c54f-6951-4d4d-9d84-e76a5f8f98f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/_ping - method: HEAD - response: - body: "" - headers: - Api-Version: - - "1.51" - Builder-Version: - - "2" - Cache-Control: - - no-cache, no-store, must-revalidate - Content-Length: - - "0" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Mon, 15 Dec 2025 13:27:30 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Pragma: - - no-cache - Server: - - Docker/28.5.1 (linux) - Swarm: - - inactive - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache - curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step - 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step - 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully - built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" - form: {} - headers: - Content-Type: - - application/x-tar - X-Registry-Config: - - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwappclitctnrdeployfpv7kvie1v%2Fapp-cli-t-ctnr-deploy-fp%3Alatest - method: POST - response: - body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/4 : RUN apk add --no-cache - curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step - 3/4 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step - 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully - built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest\\n\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:30 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e - \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] - \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e - \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1486336,\"total\":8669818},\"progress\":\"[========\\u003e - \ ] 1.486MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2665984,\"total\":8669818},\"progress\":\"[===============\\u003e - \ ] 2.666MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e - \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] - \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4053504,\"total\":8669818},\"progress\":\"[=======================\\u003e - \ ] 4.054MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5971968,\"total\":8669818},\"progress\":\"[==================================\\u003e - \ ] 5.972MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e - \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7375360,\"total\":8669818},\"progress\":\"[==========================================\\u003e - \ ] 7.375MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e - \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8376320,\"total\":8669818},\"progress\":\"[================================================\\u003e - \ ] 8.376MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e - \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] - \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5067776,\"total\":41047172},\"progress\":\"[======\\u003e - \ ] 5.068MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6760448,\"total\":41047172},\"progress\":\"[========\\u003e - \ ] 6.76MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9316352,\"total\":41047172},\"progress\":\"[===========\\u003e - \ ] 9.316MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11020288,\"total\":41047172},\"progress\":\"[=============\\u003e - \ ] 11.02MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12724224,\"total\":41047172},\"progress\":\"[===============\\u003e - \ ] 12.72MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14873088,\"total\":41047172},\"progress\":\"[==================\\u003e - \ ] 14.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16587776,\"total\":41047172},\"progress\":\"[====================\\u003e - \ ] 16.59MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18307072,\"total\":41047172},\"progress\":\"[======================\\u003e - \ ] 18.31MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20004864,\"total\":41047172},\"progress\":\"[========================\\u003e - \ ] 20MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22111744,\"total\":41047172},\"progress\":\"[==========================\\u003e - \ ] 22.11MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23821824,\"total\":41047172},\"progress\":\"[=============================\\u003e - \ ] 23.82MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25520128,\"total\":41047172},\"progress\":\"[===============================\\u003e - \ ] 25.52MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27224064,\"total\":41047172},\"progress\":\"[=================================\\u003e - \ ] 27.22MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28912640,\"total\":41047172},\"progress\":\"[===================================\\u003e - \ ] 28.91MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30173184,\"total\":41047172},\"progress\":\"[====================================\\u003e - \ ] 30.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31899136,\"total\":41047172},\"progress\":\"[======================================\\u003e - \ ] 31.9MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33184768,\"total\":41047172},\"progress\":\"[========================================\\u003e - \ ] 33.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34470912,\"total\":41047172},\"progress\":\"[=========================================\\u003e - \ ] 34.47MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e - \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e - \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e - \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37013504,\"total\":41047172},\"progress\":\"[=============================================\\u003e - \ ] 37.01MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38727680,\"total\":41047172},\"progress\":\"[===============================================\\u003e - \ ] 38.73MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40873472,\"total\":41047172},\"progress\":\"[=================================================\\u003e - ] 40.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e - \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1664512,\"total\":4245763},\"progress\":\"[===================\\u003e - \ ] 1.665MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2841600,\"total\":4245763},\"progress\":\"[=================================\\u003e - \ ] 2.842MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3867136,\"total\":4245763},\"progress\":\"[=============================================\\u003e - \ ] 3.867MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] - \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e - \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1174139,\"total\":8442034},\"progress\":\"[======\\u003e - \ ] 1.174MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2721280,\"total\":8442034},\"progress\":\"[================\\u003e - \ ] 2.721MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3999232,\"total\":8442034},\"progress\":\"[=======================\\u003e - \ ] 3.999MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5867008,\"total\":8442034},\"progress\":\"[==================================\\u003e - \ ] 5.867MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7732224,\"total\":8442034},\"progress\":\"[=============================================\\u003e - \ ] 7.732MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] - \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: - digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" - form: {} - headers: - Content-Type: - - application/json - X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3YXBwY2xpdGN0bnJkZXBsb3lmcHY3a3ZpZTF2In0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp/push?tag=latest - method: POST - response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e - \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] - \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e - \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1486336,\"total\":8669818},\"progress\":\"[========\\u003e - \ ] 1.486MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2665984,\"total\":8669818},\"progress\":\"[===============\\u003e - \ ] 2.666MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e - \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] - \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4053504,\"total\":8669818},\"progress\":\"[=======================\\u003e - \ ] 4.054MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5971968,\"total\":8669818},\"progress\":\"[==================================\\u003e - \ ] 5.972MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e - \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7375360,\"total\":8669818},\"progress\":\"[==========================================\\u003e - \ ] 7.375MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e - \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8376320,\"total\":8669818},\"progress\":\"[================================================\\u003e - \ ] 8.376MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e - \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] - \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5067776,\"total\":41047172},\"progress\":\"[======\\u003e - \ ] 5.068MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6760448,\"total\":41047172},\"progress\":\"[========\\u003e - \ ] 6.76MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9316352,\"total\":41047172},\"progress\":\"[===========\\u003e - \ ] 9.316MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11020288,\"total\":41047172},\"progress\":\"[=============\\u003e - \ ] 11.02MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12724224,\"total\":41047172},\"progress\":\"[===============\\u003e - \ ] 12.72MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14873088,\"total\":41047172},\"progress\":\"[==================\\u003e - \ ] 14.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16587776,\"total\":41047172},\"progress\":\"[====================\\u003e - \ ] 16.59MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18307072,\"total\":41047172},\"progress\":\"[======================\\u003e - \ ] 18.31MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20004864,\"total\":41047172},\"progress\":\"[========================\\u003e - \ ] 20MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22111744,\"total\":41047172},\"progress\":\"[==========================\\u003e - \ ] 22.11MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23821824,\"total\":41047172},\"progress\":\"[=============================\\u003e - \ ] 23.82MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25520128,\"total\":41047172},\"progress\":\"[===============================\\u003e - \ ] 25.52MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27224064,\"total\":41047172},\"progress\":\"[=================================\\u003e - \ ] 27.22MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28912640,\"total\":41047172},\"progress\":\"[===================================\\u003e - \ ] 28.91MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30173184,\"total\":41047172},\"progress\":\"[====================================\\u003e - \ ] 30.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31899136,\"total\":41047172},\"progress\":\"[======================================\\u003e - \ ] 31.9MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33184768,\"total\":41047172},\"progress\":\"[========================================\\u003e - \ ] 33.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34470912,\"total\":41047172},\"progress\":\"[=========================================\\u003e - \ ] 34.47MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e - \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e - \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e - \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37013504,\"total\":41047172},\"progress\":\"[=============================================\\u003e - \ ] 37.01MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38727680,\"total\":41047172},\"progress\":\"[===============================================\\u003e - \ ] 38.73MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40873472,\"total\":41047172},\"progress\":\"[=================================================\\u003e - ] 40.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e - \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1664512,\"total\":4245763},\"progress\":\"[===================\\u003e - \ ] 1.665MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2841600,\"total\":4245763},\"progress\":\"[=================================\\u003e - \ ] 2.842MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3867136,\"total\":4245763},\"progress\":\"[=============================================\\u003e - \ ] 3.867MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] - \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e - \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1174139,\"total\":8442034},\"progress\":\"[======\\u003e - \ ] 1.174MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2721280,\"total\":8442034},\"progress\":\"[================\\u003e - \ ] 2.721MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3999232,\"total\":8442034},\"progress\":\"[=======================\\u003e - \ ] 3.999MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5867008,\"total\":8442034},\"progress\":\"[==================================\\u003e - \ ] 5.867MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7732224,\"total\":8442034},\"progress\":\"[=============================================\\u003e - \ ] 7.732MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] - \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: - digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:30 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"containers":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=app-cli-t-ctnr-deploy-fp&namespace_id=18240f6a-c906-43d5-a628-39908c92a488&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"containers":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7db3b3e4-3410-4d90-ae23-be9c68c22d4f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505366780Z", "updated_at":"2025-12-15T13:27:49.505366780Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505366780Z", "updated_at":"2025-12-15T13:27:49.505366780Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1014" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7f061d26-09e5-40ea-8806-6bb26cd22c3e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584030Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 - method: PATCH - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584030Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1009" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a2d265a-2ff6-4daf-8d4b-3d1155a7cee7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 - method: GET - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.790584Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46b48dd5-156a-4769-b281-af591e60cb1c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353045Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2/deploy - method: POST - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353045Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1009" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d80e22c7-2065-4d7d-90dc-2ca5fe970032 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 - method: GET - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:49.920353Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f4ed622d-8571-4d0d-bb22-92ced7c31651 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:50.156377Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 - method: GET - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:27:50.156377Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 083b2895-07b7-4e25-b409-e702f7c715f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:28:06.399462Z", - "ready_at":"2025-12-15T13:28:06.389050Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/781e023f-8166-4e87-90bc-3d88b72448b2 - method: GET - response: - body: '{"id":"781e023f-8166-4e87-90bc-3d88b72448b2", "name":"app-cli-t-ctnr-deploy-fp", - "namespace_id":"18240f6a-c906-43d5-a628-39908c92a488", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp:latest", - "max_concurrency":50, "domain_name":"appclitctnrdeployfpv7kvie1v-app-cli-t-ctnr-deploy-fp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:27:49.505367Z", "updated_at":"2025-12-15T13:28:06.399462Z", - "ready_at":"2025-12-15T13:28:06.389050Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1029" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e4c40d0-c08c-470a-a7d0-b4a62d7b70ac - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e062b600-2bbc-4bb3-ae00-68ebe1d02cf7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-fp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09e9bb42-9fff-4579-b114-b4317431c1cc - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml deleted file mode 100644 index fb2891d115..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.cassette.yaml +++ /dev/null @@ -1,977 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 71079188-bfa9-4867-8a8f-aa6c0d5c3fdc - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:28:21.575817193Z", "updated_at":"2025-12-15T13:28:21.575817193Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:28:21.575817193Z", "updated_at":"2025-12-15T13:28:21.575817193Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "521" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a772a893-38f6-4a0b-ba3f-97ea49571b96 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", "updated_at":"2025-12-15T13:28:21.575817Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", "updated_at":"2025-12-15T13:28:21.575817Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ac34a726-1452-4df7-8bdf-0dade5bc3602 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad2bb1c6-5702-429b-a03a-7d705ddd1b72 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/_ping - method: HEAD - response: - body: "" - headers: - Api-Version: - - "1.51" - Builder-Version: - - "2" - Cache-Control: - - no-cache, no-store, must-revalidate - Content-Length: - - "0" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Mon, 15 Dec 2025 13:28:36 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Pragma: - - no-cache - Server: - - Docker/28.5.1 (linux) - Swarm: - - inactive - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache - curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step - 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step - 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 56b52e8fb973\\n\"}\r\n{\"stream\":\" ---\\u003e 0ed3e671d007\\n\"}\r\n{\"stream\":\"Step - 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 15bf30eabd27\\n\"}\r\n{\"stream\":\" ---\\u003e 95c1f0ebc25c\\n\"}\r\n{\"stream\":\"Step - 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 950708c2ac04\\n\"}\r\n{\"stream\":\" ---\\u003e bd828e4ab8ee\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:bd828e4ab8ee3b2a042ec8f8ae46be12d13550e3ee4cbaa3bfe940c06331caef\"}}\r\n{\"stream\":\"Successfully - built bd828e4ab8ee\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" - form: {} - headers: - Content-Type: - - application/x-tar - X-Registry-Config: - - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?buildargs=%7B%22TEST%22%3A%22thisisatest%22%7D&dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploybao7dknudy%2Fcli-t-ctnr-deploy-ba%3Alatest - method: POST - response: - body: "{\"stream\":\"Step 1/6 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step 2/6 : RUN apk add --no-cache - curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Using - cache\\n\"}\r\n{\"stream\":\" ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step - 3/6 : COPY ./index.html /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Using cache\\n\"}\r\n{\"stream\":\" ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step - 4/6 : ARG TEST\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 56b52e8fb973\\n\"}\r\n{\"stream\":\" ---\\u003e 0ed3e671d007\\n\"}\r\n{\"stream\":\"Step - 5/6 : RUN test -n \\\"$TEST\\\"\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 15bf30eabd27\\n\"}\r\n{\"stream\":\" ---\\u003e 95c1f0ebc25c\\n\"}\r\n{\"stream\":\"Step - 6/6 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" ---\\u003e Running - in 950708c2ac04\\n\"}\r\n{\"stream\":\" ---\\u003e bd828e4ab8ee\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:bd828e4ab8ee3b2a042ec8f8ae46be12d13550e3ee4cbaa3bfe940c06331caef\"}}\r\n{\"stream\":\"Successfully - built bd828e4ab8ee\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest\\n\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:36 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"latest: - digest: sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a\",\"Size\":2407}}\r\n" - form: {} - headers: - Content-Type: - - application/json - X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3liYW83ZGtudWR5In0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba/push?tag=latest - method: POST - response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Mounted - from funcscwappclitctnrdeployfpv7kvie1v/app-cli-t-ctnr-deploy-fp\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"latest: - digest: sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:28a3713fbdd9a44f158f5be19672fb4319ae7330b9247e9823ff912c34d62a2a\",\"Size\":2407}}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:37 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"containers":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-ba&namespace_id=eca8273b-ac27-46c9-b983-ae9e4685e626&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"containers":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6149a77d-cb8e-4dfe-8011-7474e22f63ac - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751450Z", "updated_at":"2025-12-15T13:28:49.931751450Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751450Z", "updated_at":"2025-12-15T13:28:49.931751450Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 80b07a79-a81d-4203-862f-407eb3fc9289 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221421Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 - method: PATCH - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221421Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "991" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a914ffad-dfc8-42e2-b12e-7dee99f10e7a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 - method: GET - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.169221Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "988" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a2ee1a08-f144-48f2-8c93-102cb5a18913 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348184842Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049/deploy - method: POST - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348184842Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "991" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b5e8152-2ec4-44f7-91d1-554d76aad9e7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348185Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 - method: GET - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.348185Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "988" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:28:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9bf8201b-0852-4559-adb7-40e14d7276f1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.627156Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 - method: GET - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:28:50.627156Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "988" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7af2302-74f9-4833-8b24-397f4f2124ff - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:29:06.858332Z", - "ready_at":"2025-12-15T13:29:06.849589Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/604b7270-b991-469c-9c5b-422be05c0049 - method: GET - response: - body: '{"id":"604b7270-b991-469c-9c5b-422be05c0049", "name":"cli-t-ctnr-deploy-ba", - "namespace_id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy/cli-t-ctnr-deploy-ba:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:28:49.931751Z", "updated_at":"2025-12-15T13:29:06.858332Z", - "ready_at":"2025-12-15T13:29:06.849589Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1011" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32f78163-99f4-4303-8832-c5613c80be55 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:28:23.044457Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - headers: - Content-Length: - - "634" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8272e82-bc47-4d12-928c-75737a1ae64f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599003620Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: DELETE - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599003620Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "606" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8076057-37fb-4f72-82c2-7ae962da30a3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9912af55-9bdf-4d06-b4b5-408eaeca470d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb8f5f0b-62ac-4d69-bf4a-1303427c2a0e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"id":"eca8273b-ac27-46c9-b983-ae9e4685e626", "name":"cli-t-ctnr-deploy-ba", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"b4851f66-910b-4f9c-8be7-add7d97fef73", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybao7dknudy", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:28:21.575817Z", - "updated_at":"2025-12-15T13:29:20.599004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:29:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 73a57e19-7370-4579-bea4-03b21d054ea5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"message":"Namespace was not found"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/eca8273b-ac27-46c9-b983-ae9e4685e626 - method: GET - response: - body: '{"message":"Namespace was not found"}' - headers: - Content-Length: - - "37" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f061a43c-a3b5-4156-af4a-844a7bd3ee0c - status: 404 Not Found - code: 404 - duration: "" -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-ba&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d1a9911-f1be-4c20-9d04-d036ab09ca3f - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden deleted file mode 100644 index 3f66e533be..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-build-args.golden +++ /dev/null @@ -1,6 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud - -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploybao7dknudy-cli-t-ctnr-deploy-ba.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml deleted file mode 100644 index a71cd21999..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.cassette.yaml +++ /dev/null @@ -1,4331 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 64db36d4-d1b9-4fd8-be40-9b32bd8cb4b0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:30:07.132876529Z", "updated_at":"2025-12-15T13:30:07.132876529Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:30:07.132876529Z", "updated_at":"2025-12-15T13:30:07.132876529Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "521" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed8b4e3d-dc63-4b96-8c52-6d20e67a82b4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", "updated_at":"2025-12-15T13:30:07.132877Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: GET - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", "updated_at":"2025-12-15T13:30:07.132877Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b206464d-fc04-4a71-9e51-e07222afa9c2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: GET - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f29f661-1b65-4916-89c6-3df67466d7bb - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/_ping - method: HEAD - response: - body: "" - headers: - Api-Version: - - "1.51" - Builder-Version: - - "2" - Cache-Control: - - no-cache, no-store, must-revalidate - Content-Length: - - "0" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Mon, 15 Dec 2025 13:30:22 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Pragma: - - no-cache - Server: - - Docker/28.5.1 (linux) - Swarm: - - inactive - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:22.521471971+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info - method: GET - response: - body: | - {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:22.521471971+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:22 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: - sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a\"}\r\n{\"status\":\"Status: - Image is up to date for paketobuildpacks/builder-jammy-base:latest\"}\r\n" - form: {} - headers: - X-Registry-Auth: - - eyJhdXRoIjoiT2c9PSJ9 - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Fbuilder-jammy-base&tag=latest - method: POST - response: - body: "{\"status\":\"Pulling from paketobuildpacks/builder-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: - sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a\"}\r\n{\"status\":\"Status: - Image is up to date for paketobuildpacks/builder-jammy-base:latest\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:23 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version - method: GET - response: - body: | - {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} - headers: - Api-Version: - - "1.51" - Content-Length: - - "727" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:23 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502372,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/merged","UpperDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff","WorkDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.39.1+git-dc9220d.build-6702\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/json - method: GET - response: - body: | - {"Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","RepoTags":["paketobuildpacks/builder-jammy-base:latest"],"RepoDigests":["paketobuildpacks/builder-jammy-base@sha256:18da82f2a9aecc4bca22762be6309059392282b0b22541b527b68a248945636a"],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502372,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/merged","UpperDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff","WorkDir":"/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.39.1+git-dc9220d.build-6702\"},\"images\":[{\"image\":\"index.docker.io/paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:23 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64928620,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64932717,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49826669,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4887425,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78316782,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78415087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":63325423,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18906,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77036224,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7117286,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052527,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11802398,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2831246,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7338712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5433,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4658057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4649181,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4645085,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64887132,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4670145,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76591924,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64990046,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76641207,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64957002,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76559278,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4895759,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112466284,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112462188,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3346,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4891521,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68636468,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68534068,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68513005,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68545976,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5036882,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65205217,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41174864,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7422057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14476470,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7285326,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20598,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10705898,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7212445,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65234266,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7357429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11166686,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76584043,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64814007,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76690543,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969196,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5091349,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4512655,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9423863,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77059170,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78476634,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1744,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65294455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65363805,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4672439,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10518994,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66809080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":72819714,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7286083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9636192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9546080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9533792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13151637,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10962370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11311370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11304152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27474628,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":320599029,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77871919,"Tags":null}] - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/index.docker.io/paketobuildpacks/builder-jammy-base:latest/history - method: GET - response: - body: | - [{"Comment":"","Created":315532801,"CreatedBy":"","Id":"sha256:b9ec1b046ffe1e8ade5b133654b5c81c9f9f05270ec3bb06322fd31c891093ab","Size":0,"Tags":["paketobuildpacks/builder-jammy-base:latest"]},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":79,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":816,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64928620,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64932717,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":49826669,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4887425,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78316782,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78415087,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":63325423,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":18906,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7118157,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77036224,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7117286,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178639,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7052527,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11802398,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2831246,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7338712,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7016,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4330205,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4174537,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5433,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4658057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4178621,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4702429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4649181,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4645085,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64887132,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4670145,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76591924,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64990046,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76641207,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64957002,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76559278,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":21846392,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4895759,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112466284,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":112462188,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":3346,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4891521,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969365,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68636468,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68534068,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68513005,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":68545976,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5036882,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65205217,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":41174864,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7422057,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":14476470,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7285326,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":20598,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":17626,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10705898,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7212445,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4526546,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4485586,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65234266,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64586026,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7357429,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11166686,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":2083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76584043,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":64814007,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":76690543,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4969196,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":5091349,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4471694,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4512655,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9423863,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77059170,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":78476634,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1744,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65294455,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":65363805,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":4672439,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10518994,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":66809080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":72819714,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":7286083,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9636192,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9546080,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":9533792,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":22805966,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":28652373,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":13151637,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":10962370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11311370,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":11304152,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":27474628,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":0,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":320599029,"Tags":null},{"Comment":"","Created":315532801,"CreatedBy":"","Id":"","Size":77871919,"Tags":null}] - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:23 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: - sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e\"}\r\n{\"status\":\"Status: - Image is up to date for paketobuildpacks/run-jammy-base:latest\"}\r\n" - form: {} - headers: - X-Registry-Auth: - - eyJhdXRoIjoiT2c9PSJ9 - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/create?fromImage=docker.io%2Fpaketobuildpacks%2Frun-jammy-base&platform=linux%2Famd64&tag=latest - method: POST - response: - body: "{\"status\":\"Pulling from paketobuildpacks/run-jammy-base\",\"id\":\"latest\"}\r\n{\"status\":\"Digest: - sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e\"}\r\n{\"status\":\"Status: - Image is up to date for paketobuildpacks/run-jammy-base:latest\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/version - method: GET - response: - body: | - {"Platform":{"Name":""},"Components":[{"Name":"Engine","Version":"28.5.1","Details":{"ApiVersion":"1.51","Arch":"amd64","BuildTime":"1980-01-01T00:00:00.000000000+00:00","Experimental":"false","GitCommit":"v28.5.1","GoVersion":"go1.25.4","KernelVersion":"6.17.8","MinAPIVersion":"1.24","Os":"linux"}},{"Name":"containerd","Version":"v2.2.0","Details":{"GitCommit":"refs/tags/v2.2.0"}},{"Name":"runc","Version":"1.3.0","Details":{"GitCommit":""}},{"Name":"docker-init","Version":"0.19.0","Details":{"GitCommit":""}}],"Version":"28.5.1","ApiVersion":"1.51","MinAPIVersion":"1.24","GitCommit":"v28.5.1","GoVersion":"go1.25.4","Os":"linux","Arch":"amd64","KernelVersion":"6.17.8","BuildTime":"1980-01-01T00:00:00.000000000+00:00"} - headers: - Api-Version: - - "1.51" - Content-Length: - - "727" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e"],"Parent":"","Comment":"","Created":"2025-12-08T04:43:30.878371044Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":109483652,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/81200a7826ef679d04d8706c847a251b3083f059047c48d5c2120ec2a605fd36/diff:/var/lib/docker/overlay2/b88bf6b550ed6540de80c5ba1e2c9f373f42ffabdcff6d16db0b3dce26df9cd1/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/merged","UpperDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/diff","WorkDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:c11ee8f96dca1dddff3b0275b59f38593aa5d6585f45185088b869773d2baafe","sha256:6c963d3b99498646b594ba9e3684721b9ad9797a347e4d661828a62214b32a2c","sha256:5c6e39b36b811278e902fa997cdcb4a7cd57e03f2a4359afec25e3afdc62cef0"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/json - method: GET - response: - body: | - {"Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","RepoTags":["paketobuildpacks/run-jammy-base:latest"],"RepoDigests":["paketobuildpacks/run-jammy-base@sha256:3df61c6af47ac98f3132352cff29aa684d5fbb9c6ef6543844d91ef82c28073e"],"Parent":"","Comment":"","Created":"2025-12-08T04:43:30.878371044Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":109483652,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/81200a7826ef679d04d8706c847a251b3083f059047c48d5c2120ec2a605fd36/diff:/var/lib/docker/overlay2/b88bf6b550ed6540de80c5ba1e2c9f373f42ffabdcff6d16db0b3dce26df9cd1/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/merged","UpperDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/diff","WorkDir":"/var/lib/docker/overlay2/6adfce331b3db64e141116dc65e4f8093c2198f83a0565f50aebe880546a6430/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:c11ee8f96dca1dddff3b0275b59f38593aa5d6585f45185088b869773d2baafe","sha256:6c963d3b99498646b594ba9e3684721b9ad9797a347e4d661828a62214b32a2c","sha256:5c6e39b36b811278e902fa997cdcb4a7cd57e03f2a4359afec25e3afdc62cef0"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"Labels":{"io.buildpacks.stack.description":"ubuntu:jammy with some common dependencies like tzdata and openssl","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1002:1000","Volumes":null,"WorkingDir":""}} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31609811,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / ","Id":"","Size":77871919,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/paketobuildpacks/run-jammy-base:latest/history - method: GET - response: - body: | - [{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"sha256:bd58da2ffeddf8c0af4d3123d1115bc83b93b3c508a5beff6d470099ca784f0d","Size":505,"Tags":["paketobuildpacks/run-jammy-base:latest"]},{"Comment":"","Created":-62135596800,"CreatedBy":"","Id":"","Size":1417,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"RUN |3 sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig package_args=--no-install-recommends /bin/sh -c echo \"$sources\" > /etc/apt/sources.list && echo \"Package: $packages\\nPin: release c=multiverse\\nPin-Priority: -1\\n\\nPackage: $packages\\nPin: release c=restricted\\nPin-Priority: -1\\n\" > /etc/apt/preferences && echo \"debconf debconf/frontend select noninteractive\" | debconf-set-selections && export DEBIAN_FRONTEND=noninteractive && apt-get -y $package_args update && apt-get -y $package_args upgrade && apt-get -y $package_args install locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 && apt-get -y $package_args install $packages && find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && rm -rf /usr/share/man/* /usr/share/info/* /usr/share/groff/* /usr/share/lintian/* /usr/share/linda/* /var/lib/apt/lists/* /tmp/* /etc/apt/preferences && rm /etc/os-release && cat /usr/lib/os-release | sed -e 's#PRETTY_NAME=.*#PRETTY_NAME=\"Paketo Buildpacks Base Jammy\"#' -e 's#HOME_URL=.*#HOME_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack\"#' -e 's#SUPPORT_URL=.*#SUPPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/blob/main/README.md\"#' -e 's#BUG_REPORT_URL=.*#BUG_REPORT_URL=\"https://github.com/paketo-buildpacks/jammy-base-stack/issues/new\"#' > /etc/os-release && rm /usr/lib/os-release # buildkit","Id":"","Size":31609811,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG package_args=--no-install-recommends","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG packages=ca-certificates libexpat1 libssl3 libyaml-0-2 netbase openssl tzdata zlib1g fontconfig ","Id":"","Size":0,"Tags":null},{"Comment":"buildkit.dockerfile.v0","Created":1765169010,"CreatedBy":"ARG sources= deb http://archive.ubuntu.com/ubuntu jammy main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-updates main universe multiverse\n deb http://archive.ubuntu.com/ubuntu jammy-security main universe multiverse\n ","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) CMD [\"/bin/bash\"]","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376200,"CreatedBy":"/bin/sh -c #(nop) ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / ","Id":"","Size":77871919,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH","Id":"","Size":0,"Tags":null},{"Comment":"","Created":1760376198,"CreatedBy":"/bin/sh -c #(nop) ARG RELEASE","Id":"","Size":0,"Tags":null}] - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:24.293608641+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/info - method: GET - response: - body: | - {"ID":"2696a8fb-0d3a-46a9-8f99-17c163543a95","Containers":15,"ContainersRunning":1,"ContainersPaused":0,"ContainersStopped":14,"Images":34,"Driver":"overlay2","DriverStatus":[["Backing Filesystem","extfs"],["Supports d_type","true"],["Using metacopy","false"],["Native Overlay Diff","true"],["userxattr","false"]],"Plugins":{"Volume":["local"],"Network":["bridge","host","ipvlan","macvlan","null","overlay"],"Authorization":null,"Log":["awslogs","fluentd","gcplogs","gelf","journald","json-file","local","splunk","syslog"]},"MemoryLimit":true,"SwapLimit":true,"CpuCfsPeriod":true,"CpuCfsQuota":true,"CPUShares":true,"CPUSet":true,"PidsLimit":true,"IPv4Forwarding":true,"Debug":false,"NFd":80,"OomKillDisable":false,"NGoroutines":123,"SystemTime":"2025-12-15T14:30:24.293608641+01:00","LoggingDriver":"journald","CgroupDriver":"systemd","CgroupVersion":"2","NEventsListener":0,"KernelVersion":"6.17.8","OperatingSystem":"NixOS 25.11 (Xantusia)","OSVersion":"25.11","OSType":"linux","Architecture":"x86_64","IndexServerAddress":"https://index.docker.io/v1/","RegistryConfig":{"IndexConfigs":{"docker.io":{"Mirrors":[],"Name":"docker.io","Official":true,"Secure":true}},"InsecureRegistryCIDRs":["::1/128","127.0.0.0/8"],"Mirrors":null},"NCPU":8,"MemTotal":16419725312,"GenericResources":null,"DockerRootDir":"/var/lib/docker","HttpProxy":"","HttpsProxy":"","NoProxy":"","Name":"nixos","Labels":[],"ExperimentalBuild":false,"ServerVersion":"28.5.1","Runtimes":{"io.containerd.runc.v2":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}},"runc":{"path":"runc","status":{"org.opencontainers.runtime-spec.features":"{\"ociVersionMin\":\"1.0.0\",\"ociVersionMax\":\"1.2.1\",\"hooks\":[\"prestart\",\"createRuntime\",\"createContainer\",\"startContainer\",\"poststart\",\"poststop\"],\"mountOptions\":[\"async\",\"atime\",\"bind\",\"defaults\",\"dev\",\"diratime\",\"dirsync\",\"exec\",\"iversion\",\"lazytime\",\"loud\",\"mand\",\"noatime\",\"nodev\",\"nodiratime\",\"noexec\",\"noiversion\",\"nolazytime\",\"nomand\",\"norelatime\",\"nostrictatime\",\"nosuid\",\"nosymfollow\",\"private\",\"ratime\",\"rbind\",\"rdev\",\"rdiratime\",\"relatime\",\"remount\",\"rexec\",\"rnoatime\",\"rnodev\",\"rnodiratime\",\"rnoexec\",\"rnorelatime\",\"rnostrictatime\",\"rnosuid\",\"rnosymfollow\",\"ro\",\"rprivate\",\"rrelatime\",\"rro\",\"rrw\",\"rshared\",\"rslave\",\"rstrictatime\",\"rsuid\",\"rsymfollow\",\"runbindable\",\"rw\",\"shared\",\"silent\",\"slave\",\"strictatime\",\"suid\",\"symfollow\",\"sync\",\"tmpcopyup\",\"unbindable\"],\"linux\":{\"namespaces\":[\"cgroup\",\"ipc\",\"mount\",\"network\",\"pid\",\"time\",\"user\",\"uts\"],\"capabilities\":[\"CAP_CHOWN\",\"CAP_DAC_OVERRIDE\",\"CAP_DAC_READ_SEARCH\",\"CAP_FOWNER\",\"CAP_FSETID\",\"CAP_KILL\",\"CAP_SETGID\",\"CAP_SETUID\",\"CAP_SETPCAP\",\"CAP_LINUX_IMMUTABLE\",\"CAP_NET_BIND_SERVICE\",\"CAP_NET_BROADCAST\",\"CAP_NET_ADMIN\",\"CAP_NET_RAW\",\"CAP_IPC_LOCK\",\"CAP_IPC_OWNER\",\"CAP_SYS_MODULE\",\"CAP_SYS_RAWIO\",\"CAP_SYS_CHROOT\",\"CAP_SYS_PTRACE\",\"CAP_SYS_PACCT\",\"CAP_SYS_ADMIN\",\"CAP_SYS_BOOT\",\"CAP_SYS_NICE\",\"CAP_SYS_RESOURCE\",\"CAP_SYS_TIME\",\"CAP_SYS_TTY_CONFIG\",\"CAP_MKNOD\",\"CAP_LEASE\",\"CAP_AUDIT_WRITE\",\"CAP_AUDIT_CONTROL\",\"CAP_SETFCAP\",\"CAP_MAC_OVERRIDE\",\"CAP_MAC_ADMIN\",\"CAP_SYSLOG\",\"CAP_WAKE_ALARM\",\"CAP_BLOCK_SUSPEND\",\"CAP_AUDIT_READ\",\"CAP_PERFMON\",\"CAP_BPF\",\"CAP_CHECKPOINT_RESTORE\"],\"cgroup\":{\"v1\":true,\"v2\":true,\"systemd\":true,\"systemdUser\":true,\"rdma\":true},\"seccomp\":{\"enabled\":true,\"actions\":[\"SCMP_ACT_ALLOW\",\"SCMP_ACT_ERRNO\",\"SCMP_ACT_KILL\",\"SCMP_ACT_KILL_PROCESS\",\"SCMP_ACT_KILL_THREAD\",\"SCMP_ACT_LOG\",\"SCMP_ACT_NOTIFY\",\"SCMP_ACT_TRACE\",\"SCMP_ACT_TRAP\"],\"operators\":[\"SCMP_CMP_EQ\",\"SCMP_CMP_GE\",\"SCMP_CMP_GT\",\"SCMP_CMP_LE\",\"SCMP_CMP_LT\",\"SCMP_CMP_MASKED_EQ\",\"SCMP_CMP_NE\"],\"archs\":[\"SCMP_ARCH_AARCH64\",\"SCMP_ARCH_ARM\",\"SCMP_ARCH_MIPS\",\"SCMP_ARCH_MIPS64\",\"SCMP_ARCH_MIPS64N32\",\"SCMP_ARCH_MIPSEL\",\"SCMP_ARCH_MIPSEL64\",\"SCMP_ARCH_MIPSEL64N32\",\"SCMP_ARCH_PPC\",\"SCMP_ARCH_PPC64\",\"SCMP_ARCH_PPC64LE\",\"SCMP_ARCH_RISCV64\",\"SCMP_ARCH_S390\",\"SCMP_ARCH_S390X\",\"SCMP_ARCH_X32\",\"SCMP_ARCH_X86\",\"SCMP_ARCH_X86_64\"],\"knownFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"],\"supportedFlags\":[\"SECCOMP_FILTER_FLAG_TSYNC\",\"SECCOMP_FILTER_FLAG_SPEC_ALLOW\",\"SECCOMP_FILTER_FLAG_LOG\"]},\"apparmor\":{\"enabled\":true},\"selinux\":{\"enabled\":true},\"intelRdt\":{\"enabled\":true},\"mountExtensions\":{\"idmap\":{\"enabled\":true}}},\"annotations\":{\"io.github.seccomp.libseccomp.version\":\"2.6.0\",\"org.opencontainers.runc.checkpoint.enabled\":\"true\",\"org.opencontainers.runc.commit\":\"\",\"org.opencontainers.runc.version\":\"1.3.0\\n\"},\"potentiallyUnsafeConfigAnnotations\":[\"bundle\",\"org.systemd.property.\",\"org.criu.config\"]}"}}},"DefaultRuntime":"runc","Swarm":{"NodeID":"","NodeAddr":"","LocalNodeState":"inactive","ControlAvailable":false,"Error":"","RemoteManagers":null},"LiveRestoreEnabled":true,"Isolation":"","InitBinary":"docker-init","ContainerdCommit":{"ID":"refs/tags/v2.2.0"},"RuncCommit":{"ID":""},"InitCommit":{"ID":""},"SecurityOptions":["name=seccomp,profile=builtin","name=cgroupns"],"DefaultAddressPools":[{"Base":"100.64.0.0/15","Size":24}],"FirewallBackend":{"Driver":"iptables"},"CDISpecDirs":["/etc/cdi","/var/run/cdi"],"Containerd":{"Address":"/var/run/docker/containerd/containerd.sock","Namespaces":{"Containers":"moby","Plugins":"plugins.moby"}},"Warnings":null} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" - form: {} - headers: - Content-Type: - - application/x-tar - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/load?quiet=1 - method: POST - response: - body: "{\"stream\":\"Loaded image: pack.local/builder/11111111111111111111:latest\\n\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: | - {"Id":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78","RepoTags":["pack.local/builder/11111111111111111111:latest"],"RepoDigests":[],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502497,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/5f76e0948cee0b71b73f3f410a69aebbf4eaf3375e41866f93a34d9e02f93478/diff:/var/lib/docker/overlay2/f3830a9b05d9c751ee334e3a739052502ecc860ada1a9cf3a5361826e65d7791/diff:/var/lib/docker/overlay2/cf041afa27e3975285990541386340277c9126631ba95410493351eaf4679fb5/diff:/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff:/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/merged","UpperDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/diff","WorkDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest/json - method: GET - response: - body: | - {"Id":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78","RepoTags":["pack.local/builder/11111111111111111111:latest"],"RepoDigests":[],"Parent":"","Comment":"","Created":"1980-01-01T00:00:01Z","DockerVersion":"","Author":"","Architecture":"amd64","Os":"linux","Size":3118502497,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/5f76e0948cee0b71b73f3f410a69aebbf4eaf3375e41866f93a34d9e02f93478/diff:/var/lib/docker/overlay2/f3830a9b05d9c751ee334e3a739052502ecc860ada1a9cf3a5361826e65d7791/diff:/var/lib/docker/overlay2/cf041afa27e3975285990541386340277c9126631ba95410493351eaf4679fb5/diff:/var/lib/docker/overlay2/cc988b1e74e7c88537b075c207d3ff457af5c3ae2e5cd8a188fb87ec1d7809e4/diff:/var/lib/docker/overlay2/f7aa179b301c551e656e3d0ec991b7e70cc62305c0293104bb5b0e587cc7fde6/diff:/var/lib/docker/overlay2/b53a12d849b82a8f260427e82f7ca1722b19ea2e94b59c47dcaa0636e921c06f/diff:/var/lib/docker/overlay2/85c722e49f0eb8d2ce9a1c849d5547080b0a752721b9df3a95b84d609358faad/diff:/var/lib/docker/overlay2/bfb3320cfaabab834a218a31d6b179b136e3b7d577ac81ce6d2e56968f5b30e8/diff:/var/lib/docker/overlay2/c6d53049aacf215136e6f978f096dad0d3097b955be16f584a55bbc33bac0b9f/diff:/var/lib/docker/overlay2/cd651c9c3ba3b5ab528be46426fbf8d8748a81173177da5c29e7cc1006efbb09/diff:/var/lib/docker/overlay2/d5c37426fdb289d49fe6134dc65e71abeaabeeb9d198c86c7130e6649f5ef0c6/diff:/var/lib/docker/overlay2/09628f0dacbfe763295a4034ef52b36fe32738e1a877e05706208b1dbad9c926/diff:/var/lib/docker/overlay2/cd1822fcd49c99e6dd55606c0591c979046c559d6076553b894bb674070a591b/diff:/var/lib/docker/overlay2/b560938b991b2502db391b7984938054326146fff70d23275539d9b4ae028fba/diff:/var/lib/docker/overlay2/11ba3d1f66c4f7839ef4a3ab705961498846b75428d5e1ae51727b3cf1fa5e44/diff:/var/lib/docker/overlay2/ae6f980d4c0a2522103acb4e054ea82d9629230a9ec1a6d52207c5325e8d7082/diff:/var/lib/docker/overlay2/49456a982d9c21663a2c05ecfb965c11e03690b125709f260d77886ff77ac42d/diff:/var/lib/docker/overlay2/53610749c9c362456e61756013253f06cf153c7f1ed2631cd523fb8fdc9bcb31/diff:/var/lib/docker/overlay2/7a15674bccf6374f18168494b60a07042edb5c538f3916e48613b3d4fd111040/diff:/var/lib/docker/overlay2/c081e2398c808cd7bce5ddba6e5ac9e2463487cf06e71969c4a99f44ca483c40/diff:/var/lib/docker/overlay2/95cb99c0660c1ff60d3d01065b8921aab1d8bf785b25eef9942f20f1a7f943a7/diff:/var/lib/docker/overlay2/806b97259e60dd383926df9e4488b11cf65814555bc175160cf36f8b65b028c0/diff:/var/lib/docker/overlay2/0e1d7cb783ca538061cf97c1c961697d6fc27052acd405265ad4a068315b131e/diff:/var/lib/docker/overlay2/3aa5230530a83f585a44759e156a4d917f94763e1bc3682f940ce523c4f9e3c1/diff:/var/lib/docker/overlay2/4ecc85a03d16c88d5a50c9d715333edfc9b632756ef9917ee5739301bee45338/diff:/var/lib/docker/overlay2/8bce395805a236ab0d72e8e5630c69c0fcd887c9e896cd33c6a99bcdadfea4c1/diff:/var/lib/docker/overlay2/158fcab781f58afa4ee55de658a8b6ca340dbce94a08d1a82e8e207837f98139/diff:/var/lib/docker/overlay2/c58025a527d073c2f19410eed6ffa5c88b21fdec0a4f17fd8ee68a5181b01523/diff:/var/lib/docker/overlay2/37fe9a5eb246047e2228512debf5bad7768dfcee5998b6c9fd4e481263739467/diff:/var/lib/docker/overlay2/e734195a6423231f6db79a4e7e964a945d58e77354aef8ba4f59dec5e20cf367/diff:/var/lib/docker/overlay2/acbc0a74709b85917fa019b8c25e05e2fec5b98ece0d5a2b9f7cdc5b8059f659/diff:/var/lib/docker/overlay2/6968d91a4e7b6236fc636d325a0c78e05f1abc2d7ece0dce28d54024bf3dbde0/diff:/var/lib/docker/overlay2/c0a17842bd490b121df152b25e4d8d3c360d1aacc870a103b703b754df193e7a/diff:/var/lib/docker/overlay2/98636be05898dc589c42ae47e3b41de31ddfce3d56262cd32c72dfbdae9edd92/diff:/var/lib/docker/overlay2/f13d54c68dcf08f5bcf10565aac9c43c0519bed33ac018944e67924bdfff8947/diff:/var/lib/docker/overlay2/05b1e10071d4a6148ff20944be2be3ff29c4ec94f7a768aa24a563ebb96afbaa/diff:/var/lib/docker/overlay2/8f3c5a38eb31d1e27642207a6cccd1deec0f09e014270241decb1b3e06ae1894/diff:/var/lib/docker/overlay2/694d1bcad18538964cf1e86cac6534731f72b4a88693b8b7d5b1d010118e3e84/diff:/var/lib/docker/overlay2/6bfb637ed814db7660df9c4446bea74797807ab407a0c523b21e5076d8619d27/diff:/var/lib/docker/overlay2/6b07dc7acf58e3e8f9065a9b4d5cc5ca083efaae405bb75b4ec920e5fe4d2021/diff:/var/lib/docker/overlay2/d092e13dbe77e76efb0716cc2d3a5da26581c3bd6999ba1ca6898a33d3c2d782/diff:/var/lib/docker/overlay2/66ad2572bc975bc59dd3d26ee8029ab9e41a2680f5d8146a76051ad2ac3afd42/diff:/var/lib/docker/overlay2/19aa60cca6563c6d4cd36b54a325745affcaf06741ea2b3c35946717fbae0049/diff:/var/lib/docker/overlay2/6a7f863337afcc34e65af83af04b0634cff52e94589555bc1ebdc517d953774f/diff:/var/lib/docker/overlay2/c629f302b63f418f8a18a7731c38c09ba8b400fd41ddb9d0132cc45160edae52/diff:/var/lib/docker/overlay2/d43548c10516f0b28b100f998c19b4a5d10dfb27748b64c5734ef00db35b9f7e/diff:/var/lib/docker/overlay2/55e70a4ef880cbeedceae7e6c2c69b7dc5959af95fc4ecd48ab999662cfc6c24/diff:/var/lib/docker/overlay2/f6de28011331d4266edf5a8b59de473d7221722157bae869d126afd7e7209cec/diff:/var/lib/docker/overlay2/316533469fd8fad8949634086e2f85c31f2d5ae153277cc728dabed0d72bef11/diff:/var/lib/docker/overlay2/57f0ac059ebab9994f2775aa8165ecc9941e4e9c9330778374f8891132994298/diff:/var/lib/docker/overlay2/2e82429cdafe88dc3e4c2ad314f6786faeb7e3508c38da46cfb6702e657b3043/diff:/var/lib/docker/overlay2/28880277b836918860961b825e71fff8bcf93b0778e942dae00227a1d81f2f90/diff:/var/lib/docker/overlay2/b99538360e6e9c6d0fab5d5db2a4878d12d393f75e9954745727fe1e8593d026/diff:/var/lib/docker/overlay2/e0c12c5800e1c5f6c9dc82bd3cc1adb84204b961c3d3995f45a5cf3f1e765d88/diff:/var/lib/docker/overlay2/8b8068acfac5ebf02e2948c9252d13f526f38d348557de17e715de43ed6c9fc9/diff:/var/lib/docker/overlay2/3b90ba0aca50dc22921d912399dc57fa2fc7f87e2114e66a53a848dc70f66c81/diff:/var/lib/docker/overlay2/87a02a16bdcad0808ed89f9920c705a503a6ab15dd1060339bc01bc5132f52ab/diff:/var/lib/docker/overlay2/b01c215d20588234eb1963fe197ca754d8b42854e9f20e43cc3560c9e9978328/diff:/var/lib/docker/overlay2/ff66ee75292dc938f415ecf7c957369dd71ea3363f33a8e76bc4b9bb05f19fa7/diff:/var/lib/docker/overlay2/fbdcc3400387b244aa69ca0ebf64ff56dcd6d613814702e893fb61b5a021814c/diff:/var/lib/docker/overlay2/b10aa817f612233947178d190fa68cc5ae258a45e74a948a6d665855486efd0d/diff:/var/lib/docker/overlay2/eb0283e565e3740a15ee8e0352dc63aac9dcbd2f2799d9390e3ae74cce8d8b2c/diff:/var/lib/docker/overlay2/2ee2a4092ce9ed372b63c497a0c5b685e8994e4912333f8ae5dfa109dfa3b1cb/diff:/var/lib/docker/overlay2/197726d82c3eba1733446baa8423a9e5cea258701c405ac5dd7ec38a93bbf0a0/diff:/var/lib/docker/overlay2/8453971ee6406cfaa95be3754c435f3ea18b9e80e8d7a3a67efa1410831dff24/diff:/var/lib/docker/overlay2/dbbeb1329b586b4372d3740a7ed6d2aba20265c6baefe4db3dc732367f249d3c/diff:/var/lib/docker/overlay2/e328085e0a62f6e1eb6c4bf53559d8508387529c431e19ea224314ecbec69f17/diff:/var/lib/docker/overlay2/3f830084c95120025211663f7c60d988898e55b34497b243d49b2403618168da/diff:/var/lib/docker/overlay2/8592cf9fe02d358d0f9d2caf264c76071521ed52af57aeddfa5b4d13c550b3f1/diff:/var/lib/docker/overlay2/4bc9a9cde1456a00f430cca2f6815da3b04a4ac2ac92bab4647b7d236c843ee4/diff:/var/lib/docker/overlay2/84793405f5b875b6d85a8df010bcd3f3f87e140fab8e9bf04736cdff54445c3a/diff:/var/lib/docker/overlay2/0e6465c4cce9b00e814bcacfb9f411ff43292b6bfe426918bf26fc6f84be4235/diff:/var/lib/docker/overlay2/446fcb646cc539bacc650b147bb6d0c1f609f95f70eafffee5afcb2942104fc8/diff:/var/lib/docker/overlay2/d1b4d7691a09eadda47992ca1251207989953cd393cc505997831bf4fdbbf077/diff:/var/lib/docker/overlay2/bdb703879766cb9a916d3e28dd4368414c287fbaeff089778cfcad79f52446a1/diff:/var/lib/docker/overlay2/cf340ca595fcb459a9dc16c9983cbc2043429561d18bccf4840fd57e4863bfd8/diff:/var/lib/docker/overlay2/ff1900f3b6533f44fd9b223fa34939b77f942dc7b536ad8c932f072df5abf2d2/diff:/var/lib/docker/overlay2/e7461ded3ebe97fec04f86f65d48b17915e19e516581e615822129792856a2b3/diff:/var/lib/docker/overlay2/efee1a2f55f06e06e09dd9189381e70bd5a95bbb07916c9272566a71db163b5e/diff:/var/lib/docker/overlay2/43ab3b5cc8b77a3545375a272c7b6e06067b7b50a4ba3184e02ba1b4abc25d62/diff:/var/lib/docker/overlay2/5131d092cb26648bf54d42f809f88317b12454cc11bc6a0b534f1c3a17f51e18/diff:/var/lib/docker/overlay2/c6268bd5b165c9f29c1e55f92aed327d7c83abe617fd2a93d8554cc961b91170/diff:/var/lib/docker/overlay2/bf4e9af7c04ff6d08a4043934270d24512c65b4403e4b4f7f6aeaccebe99f612/diff:/var/lib/docker/overlay2/5bc6a2a7b4555e1491f2cd11319cf217be6584a3ac87b2a07b4a0c78b67ffb57/diff:/var/lib/docker/overlay2/c52a21d51a8a56cd532671ebd7035951a34b9a2bfcb5fdb2ed0c85293d77fe5b/diff:/var/lib/docker/overlay2/039f9d74f74785b108be61551b64af9d240a63851d588c3e2a2f4fc017250561/diff:/var/lib/docker/overlay2/d9c157c331ad49ae1d84b82165fa9f6298adb2cd8e6cf9e5a21ee81976e902fa/diff:/var/lib/docker/overlay2/2b04962e3f0b69c9db1f8d72a49d28d183b11d38ecb554ca8fc89252cb7a97f3/diff:/var/lib/docker/overlay2/f510628c1a3bdf89af5779c3697e130dc05c5277e1ae121394abdecd50363c27/diff:/var/lib/docker/overlay2/2db19051a41d10f0f4a1548c93b9a57c59ce4ab412840d67330bfd086b01d6dd/diff:/var/lib/docker/overlay2/af0c6b3479d67ec7b6cd7110a7c2a552678dcf9b8964e970eaf5b9d5543c6417/diff:/var/lib/docker/overlay2/6f5f89eb3e2dcf3a5d19addbe2912b63d5e3ec023a18ca3bd97bb2920672ecab/diff:/var/lib/docker/overlay2/84f6e6a33add7978619a6984a4febba3ebacd6091f2a54b886d263c35f5d0749/diff:/var/lib/docker/overlay2/d7a7aaa88893a2fba7eb32a5c2fd5b600fab09fc5da9cee79d55cc7bfef5ee45/diff:/var/lib/docker/overlay2/e26f507528d13c236cc37a46400b37ee5531543432af5f625144fbdd3c35b823/diff:/var/lib/docker/overlay2/1e2df252fdb9868291070ea149f5c70fbd56362a94e8ddeb6e8f0985ac6191dc/diff:/var/lib/docker/overlay2/7f58741794f1349f151700357eca00a0ea97f7eab7055653bd92b3428d35a58f/diff:/var/lib/docker/overlay2/f6b65ad861430fe9bb9d799d6ab245fce54295fd951dce8976434778dcdb5699/diff:/var/lib/docker/overlay2/ede99598d8cfb20ed4e57b1733963a5013bb84061e362accfaf62f77a3b27907/diff:/var/lib/docker/overlay2/8a7a298d7cc7b2bbb24170d7c22af302390b29ce1ec0db23456cc0f79d39d41f/diff:/var/lib/docker/overlay2/5f91286fa895ccfe9c9b72a3b342bee65054ab1c5664c21d21b089b1f0fdcd7b/diff:/var/lib/docker/overlay2/ccaefd3900e0574bba1fe52f0c8531708744ca2ca1f4cc69e5f83c0ee88505e7/diff:/var/lib/docker/overlay2/7258110853c0c5d27a88c5cf5ca0f444e5f06c12275fe82d24c79d9906cf424e/diff:/var/lib/docker/overlay2/a39b45936f40df2abb692ded5481a48c3aba8df9c2169321ed5a7715bedcfad8/diff:/var/lib/docker/overlay2/013f624f42900dcb7795c96c5c844bfbe7f5cbbcf8b2ea05cb65571f2eaec262/diff","MergedDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/merged","UpperDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/diff","WorkDir":"/var/lib/docker/overlay2/31ef1a43a4c33cfcc7b373322977ed8eaa7dfaceec60ca6f4cf754b11ff01403/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:73974f74b436f39a2fdb6461b1e3f7c3e41c73325776fa71d16b942a5b4a365b","sha256:f6a235f9ca988c78ecdce24fb70d2a2a4c27b4cdf73634cf6c6c5655af2ef3b0","sha256:00054ebd453dc3ec026d720a91fc4bacfe248a942b4e533f465bbf4076002316","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:2832faa1cdf84d6464a1e664c0e1246a529242e50babb7c712dea0df03897dd6","sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502","sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54","sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc","sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f","sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9","sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f","sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002","sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8","sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b","sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9","sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76","sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498","sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8","sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6","sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183","sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa","sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90","sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330","sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a","sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6","sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069","sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719","sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7","sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165","sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd","sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef","sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130","sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd","sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b","sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf","sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5","sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9","sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f","sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21","sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd","sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4","sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e","sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef","sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b","sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3","sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5","sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955","sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a","sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414","sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b","sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd","sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04","sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135","sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc","sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903","sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027","sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82","sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661","sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129","sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d","sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd","sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e","sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7","sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2","sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae","sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67","sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4","sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905","sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874","sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a","sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416","sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777","sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e","sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6","sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412","sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0","sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b","sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2","sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d","sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d","sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe","sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab","sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd","sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117","sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7","sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d","sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8","sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7","sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce","sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a","sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3","sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992","sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4","sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd","sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba","sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475","sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2","sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4","sha256:1ea6736cb6c5adacfaadfdefa3fc00e72e9c5c241eb96459d4a993e525824242","sha256:99544ac2d4f55198bb10525a9909ada03d54d2fb907c77ebe863c6d22c53cec6","sha256:20d244435ee410d7122eaf9d5e366f4a415cff9b96e09bf0fb0bfceda39c94da","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef","sha256:10c187d2baadb7eece285c7392d79bf90177a51e547618cc9f57bda43f379829","sha256:d4007a247175ebde7b7bde7ec0651475b52510ef13e142ee4cd755d955908853","sha256:0195544f89043f65b9f6c79ac87b62f380de067a218e0f023ecea168ab91053e","sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"},"Config":{"Cmd":["/bin/bash"],"Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","CNB_USER_ID=1001","CNB_GROUP_ID=1000","CNB_STACK_ID=io.buildpacks.stacks.jammy"],"Labels":{"io.buildpacks.builder.metadata":"{\"description\":\"Ubuntu 22.04 Jammy Jellyfish base image with buildpacks for Java, Go, .NET Core, Node.js, Python, Apache HTTPD, NGINX and Procfile\",\"buildpacks\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\",\"version\":\"3.10.1\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\"},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\",\"version\":\"1.6.2\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\"},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\",\"version\":\"1.2.4\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\"},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\",\"version\":\"1.2.3\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\",\"version\":\"0.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/vsdbg\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\",\"version\":\"0.6.4\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\",\"version\":\"4.18.10\",\"homepage\":\"https://github.com/paketo-buildpacks/go\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\",\"version\":\"1.1.12\",\"homepage\":\"https://github.com/paketo-buildpacks/git\"},{\"id\":\"paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\",\"version\":\"2.4.7\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\"},{\"id\":\"paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\",\"version\":\"2.9.11\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\"},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\",\"version\":\"1.1.9\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\",\"version\":\"13.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\",\"version\":\"5.17.0\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\",\"version\":\"3.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\"},{\"id\":\"paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\",\"version\":\"20.4.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java\"},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\",\"version\":\"8.8.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\"},{\"id\":\"paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\",\"version\":\"1.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\"},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\",\"version\":\"6.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\"},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\",\"version\":\"11.5.0\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\",\"version\":\"2.16.0\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\"},{\"id\":\"paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\",\"version\":\"6.3.0\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\"},{\"id\":\"paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\",\"version\":\"5.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\"},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\",\"version\":\"6.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\"},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\",\"version\":\"10.1.0\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\"},{\"id\":\"paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\",\"version\":\"8.1.3\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\",\"version\":\"1.11.0\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\"},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\",\"version\":\"1.9.0\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\"},{\"id\":\"paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\",\"version\":\"4.14.0\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\"},{\"id\":\"paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\",\"version\":\"5.2.0\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\"},{\"id\":\"paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\",\"version\":\"6.21.0\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\",\"version\":\"6.20.0\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\"},{\"id\":\"paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\",\"version\":\"5.34.0\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\"},{\"id\":\"paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\",\"version\":\"2.26.0\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.6.0\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\",\"version\":\"9.15.3\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.2\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\",\"version\":\"2.5.12\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.5\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\",\"version\":\"2.3.11\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.12\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\",\"version\":\"2.4.11\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.12.0\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python\",\"name\":\"Paketo Buildpack for Python\",\"version\":\"2.38.7\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\",\"version\":\"0.8.3\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\"},{\"id\":\"paketo-buildpacks/cpython\",\"name\":\"Paketo Buildpack for CPython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/miniconda\",\"name\":\"Paketo Buildpack for Miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/pip\",\"name\":\"Paketo Buildpack for Pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"name\":\"Paketo Buildpack for Pip Install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/pipenv\",\"name\":\"Paketo Buildpack for Pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"name\":\"Paketo Buildpack for Pipenv Install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/poetry\",\"name\":\"Paketo Buildpack for Poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"name\":\"Paketo Buildpack for Poetry Install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"name\":\"Paketo Buildpack for Poetry Run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\",\"version\":\"0.15.4\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\",\"version\":\"0.47.12\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\",\"version\":\"0.8.18\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\"},{\"id\":\"paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\",\"version\":\"0.8.48\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.4\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.3\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.2\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\",\"version\":\"0.19.0\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.10.0\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\",\"version\":\"0.14.14\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.3\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\",\"version\":\"0.4.60\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\"},{\"id\":\"paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\",\"version\":\"0.4.52\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\"},{\"id\":\"paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\",\"version\":\"0.10.25\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\"},{\"id\":\"paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\",\"version\":\"0.4.61\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\"},{\"id\":\"paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\",\"version\":\"0.5.56\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\"},{\"id\":\"paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\",\"version\":\"0.4.59\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.6\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"},{\"id\":\"paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\",\"version\":\"3.3.4\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\"},{\"id\":\"paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\",\"version\":\"3.10.5\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\"},{\"id\":\"paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\",\"version\":\"4.9.4\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\"},{\"id\":\"paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\",\"version\":\"1.0.2\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\"},{\"id\":\"paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\",\"version\":\"4.10.3\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\"},{\"id\":\"paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\",\"version\":\"1.0.6\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\"},{\"id\":\"paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\",\"version\":\"7.12.3\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\",\"version\":\"2.3.13\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\"},{\"id\":\"paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\",\"version\":\"2.2.6\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\"},{\"id\":\"paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\",\"version\":\"5.11.4\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\"},{\"id\":\"paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\",\"version\":\"1.0.4\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\"},{\"id\":\"paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\",\"version\":\"3.5.5\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\"},{\"id\":\"paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\",\"version\":\"2.2.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\",\"version\":\"2.6.13\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\"}],\"extensions\":null,\"stack\":{\"runImage\":{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}},\"lifecycle\":{\"version\":\"0.20.19\",\"api\":{\"buildpack\":\"0.7\",\"platform\":\"0.7\"},\"apis\":{\"buildpack\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\"]},\"platform\":{\"deprecated\":[],\"supported\":[\"0.7\",\"0.8\",\"0.9\",\"0.10\",\"0.11\",\"0.12\",\"0.13\",\"0.14\"]}}},\"createdBy\":{\"name\":\"Pack CLI\",\"version\":\"0.0.0\"},\"images\":[{\"image\":\"paketobuildpacks/run-jammy-base:latest\",\"mirrors\":null}]}","io.buildpacks.buildpack.layers":"{\"paketo-buildpacks/apache-tomcat\":{\"8.8.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e3424d229195ee382dbab8f32d65ec970f018d4e4e8cfd39a24fd360382a7502\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomcat\",\"name\":\"Paketo Buildpack for Apache Tomcat\"}},\"paketo-buildpacks/apache-tomee\":{\"1.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dc7deb11eda4ac1b7e060302c6cb977b7379551afa2132929b3c21c84b623a54\",\"homepage\":\"https://github.com/paketo-buildpacks/apache-tomee\",\"name\":\"Paketo Buildpack for Apache Tomee\"}},\"paketo-buildpacks/azure-application-insights\":{\"6.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:beadb86e57191863ab1462f120eacf26b09bd1eda972effccb40a2504f657bdc\",\"homepage\":\"https://github.com/paketo-buildpacks/azure-application-insights\",\"name\":\"Paketo Buildpack for Azure Application Insights\"}},\"paketo-buildpacks/bellsoft-liberica\":{\"11.5.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d1bc6536752051f9c7b888054ca053070c2c751b971a4cf5a32433f229d56e1f\",\"homepage\":\"https://github.com/paketo-buildpacks/bellsoft-liberica\",\"name\":\"Paketo Buildpack for BellSoft Liberica\"}},\"paketo-buildpacks/bundle-install\":{\"0.8.18\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:f5b91164b8b7ad6f67b36551f0e6a87458186ec28a8dd1a1915a179ff4bf97a9\",\"homepage\":\"https://github.com/paketo-buildpacks/bundle-install\",\"name\":\"Paketo Buildpack for Bundle Install\"}},\"paketo-buildpacks/bundler\":{\"0.8.48\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:47d6e2a21ce78649cebc96cd14ef131ca52c31a2cf0b270739d3a17ecbbc491f\",\"homepage\":\"https://github.com/paketo-buildpacks/bundler\",\"name\":\"Paketo Buildpack for Bundler\"}},\"paketo-buildpacks/ca-certificates\":{\"3.10.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06fe98667c30fea25e378d5df31d50d7c5287cf1947bc6c2c19e36f0b823f002\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.10.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea9cf3171b56f43507a7c00e843c77dcc059501fb06b78c769df1c8ebf81ac8\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"},\"3.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c9dbfe899ba47d0aac4d8ad104c4d1e1e3680a4f1586a1e320a88bb632eae96b\",\"homepage\":\"https://github.com/paketo-buildpacks/ca-certificates\",\"name\":\"Paketo Buildpack for CA Certificates\"}},\"paketo-buildpacks/clojure-tools\":{\"2.16.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1cc9492b4a564d0b8e5edc496a32a0a4547cae0b76a84fb3795064f4ba737bf9\",\"homepage\":\"https://github.com/paketo-buildpacks/clojure-tools\",\"name\":\"Paketo Buildpack for Clojure Tools\"}},\"paketo-buildpacks/conda-env-update\":{\"0.8.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:33a26dad351d4065e50a552903acdeb48f68b45191273dcc8ab8beea1f733b76\",\"homepage\":\"https://github.com/paketo-buildpacks/conda-env-update\",\"name\":\"Paketo Buildpack for Conda Env Update\"}},\"paketo-buildpacks/cpython\":{\"1.18.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:689a628201ec5854d74ccd673943cda49394281d03415c04736987bd10779498\",\"name\":\"Paketo Buildpack for CPython\"}},\"paketo-buildpacks/datadog\":{\"6.3.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56b4b74eacf8815d1ca7c14c0bbee15f57a62651a4c1aa311b39237b2e7956f8\",\"homepage\":\"https://github.com/paketo-buildpacks/datadog\",\"name\":\"Paketo Buildpack for Datadog\"}},\"paketo-buildpacks/dist-zip\":{\"5.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:99048d51fe85956ca39d3be9dffcbcfa88c8f76433d480b9b342a41a471dcda6\",\"homepage\":\"https://github.com/paketo-buildpacks/dist-zip\",\"name\":\"Paketo Buildpack for DistZip\"}},\"paketo-buildpacks/dotnet-core\":{\"3.10.1\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/vsdbg\",\"version\":\"0.6.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-sdk\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/icu\",\"version\":\"0.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-publish\",\"version\":\"1.2.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-core-aspnet-runtime\",\"version\":\"1.6.2\",\"optional\":true},{\"id\":\"paketo-buildpacks/dotnet-execute\",\"version\":\"1.2.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:ddac5096cf070e9baa3be5669b66e752dca80be9ab4c00811813b5bfe400dd90\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core\",\"name\":\"Paketo Buildpack for .NET Core\"}},\"paketo-buildpacks/dotnet-core-aspnet-runtime\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4aab417da588c7228557b76538d534c9694a767e81b728a028afbf7f1f745183\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-aspnet-runtime\",\"name\":\"Paketo Buildpack for ASP.NET Core Runtime\"}},\"paketo-buildpacks/dotnet-core-sdk\":{\"1.6.2\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:fb482fe5534906beead83e2c288d5604f2b92af2df6ee0877f4328907d99f5aa\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-core-sdk\",\"name\":\"Paketo Buildpack for .NET Core SDK\"}},\"paketo-buildpacks/dotnet-execute\":{\"1.2.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b51150426ecb73e781f50b2ee38b0dde63d287fd91c76a8589d9dd432e735330\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-execute\",\"name\":\"Paketo Buildpack for .NET Execute\"}},\"paketo-buildpacks/dotnet-publish\":{\"1.2.3\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:71e3dbfcf432c04ab7412a4d3b061454246751c4d695433a52153d13e9a55a5a\",\"homepage\":\"https://github.com/paketo-buildpacks/dotnet-publish\",\"name\":\"Paketo Buildpack for .NET Publish\"}},\"paketo-buildpacks/encrypt-at-rest\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:dabfaa1e7d0af20bbb47406ada9d1f6d6b1f73e22e77a79ff6f4a3416c19a1b6\",\"homepage\":\"https://github.com/paketo-buildpacks/encrypt-at-rest\",\"name\":\"Paketo Buildpack for Encrypt-at-Rest\"}},\"paketo-buildpacks/environment-variables\":{\"4.10.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:007f6554f51d0556807fde216d6c0ae0a36c5ccfaf58604eb89febc4d92d9069\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fab9cc37420275a84571b26d96b4d52df6c96cafec2dce5c8ccac1d8d23b719\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"},\"4.9.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:0844725e9be67cee043fa69600b747f3f324e8c026343a8bfb987ee18666f2c7\",\"homepage\":\"https://github.com/paketo-buildpacks/environment-variables\",\"name\":\"Paketo Buildpack for Environment Variables\"}},\"paketo-buildpacks/executable-jar\":{\"6.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b33d957c224b5498ee0818adfa7ebd7e0f2681882a975611acd6c4b7a649c165\",\"homepage\":\"https://github.com/paketo-buildpacks/executable-jar\",\"name\":\"Paketo Buildpack for Executable JAR\"}},\"paketo-buildpacks/git\":{\"1.1.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:12d9fb02cb6bf5f5ca3e8e68a19b5b07adf5e2cb0e81adce2f5e8b9ce52d42cd\",\"homepage\":\"https://github.com/paketo-buildpacks/git\",\"name\":\"Paketo Buildpack for Git\"}},\"paketo-buildpacks/go\":{\"4.18.10\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-mod-vendor\",\"version\":\"1.1.9\"},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-dist\",\"version\":\"2.9.11\"},{\"id\":\"paketo-buildpacks/git\",\"version\":\"1.1.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/go-build\",\"version\":\"2.4.7\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:61f7b7857f196b2e0e3f99e1bda299414a335065da2eae46db0d39d5d189273b\",\"homepage\":\"https://github.com/paketo-buildpacks/go\",\"name\":\"Paketo Buildpack for Go\"}},\"paketo-buildpacks/go-build\":{\"2.4.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2b973910959c8e96e8b3ba137f9b437b84868af755df5fffc9fef897d55f66ef\",\"homepage\":\"https://github.com/paketo-buildpacks/go-build\",\"name\":\"Paketo Buildpack for Go Build\"}},\"paketo-buildpacks/go-dist\":{\"2.9.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d85e5fa16ddfc065d57e61ae4fd70901459a1828c0f512af388d98245732a130\",\"homepage\":\"https://github.com/paketo-buildpacks/go-dist\",\"name\":\"Paketo Buildpack for Go Distribution\"}},\"paketo-buildpacks/go-mod-vendor\":{\"1.1.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:83d2c975cdce17b69646baa58f28e8524b3a2dabd43f47da3f46caa5efb6e1bd\",\"homepage\":\"https://github.com/paketo-buildpacks/go-mod-vendor\",\"name\":\"Paketo Buildpack for Go Mod Vendor\"}},\"paketo-buildpacks/google-stackdriver\":{\"10.1.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1d977230bba45af73b5f50d8cf967c03bb0efdfbc2dd8c31f299a44f3994bbbf\",\"homepage\":\"https://github.com/paketo-buildpacks/google-stackdriver\",\"name\":\"Paketo Buildpack for Google Stackdriver\"}},\"paketo-buildpacks/gradle\":{\"8.1.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ce5de2faed4534efe27938036e30c0b6e8147b74ad7095dc0f403f9e2ed786a5\",\"homepage\":\"https://github.com/paketo-buildpacks/gradle\",\"name\":\"Paketo Buildpack for Gradle\"}},\"paketo-buildpacks/httpd\":{\"1.0.2\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffe5e1ddfa4c38e3a429862d808a8eb09b880e0d4ff2712715a667cb7eeb43e9\",\"homepage\":\"https://github.com/paketo-buildpacks/httpd\",\"name\":\"Paketo Buildpack for Apache HTTP Server\"}},\"paketo-buildpacks/icu\":{\"0.9.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:cbd4725361b67c955ca78e48df8fa1e15252758809f6855e72da8f9e8809f07f\",\"homepage\":\"https://github.com/paketo-buildpacks/icu\",\"name\":\"Paketo Buildpack for ICU\"}},\"paketo-buildpacks/image-labels\":{\"4.10.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:c51029a28420574013f9e41496cef9307ab28bcfabc7251e4bd1c2e283cf0f21\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.10.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:06533f80ee127bbf92fb721066a6c514422a6a39d5a66ff0d9009fe1f13d90cd\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"},\"4.11.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ba5333ad11149be74d5fc69b4d07832908a05c79c69970a706f1db2f2971f8e4\",\"homepage\":\"https://github.com/paketo-buildpacks/image-labels\",\"name\":\"Paketo Buildpack for Image Labels\"}},\"paketo-buildpacks/jattach\":{\"1.11.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:48a6de3f6fa61e029faca7a1dd0c8c5ac327e5750348af6a0a02a35983f9678e\",\"homepage\":\"https://github.com/paketo-buildpacks/jattach\",\"name\":\"Paketo Buildpack for JAttach\"}},\"paketo-buildpacks/java\":{\"20.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/clojure-tools\",\"version\":\"2.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.6.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomcat\",\"version\":\"8.8.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/apache-tomee\",\"version\":\"1.16.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/liberty\",\"version\":\"5.2.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/dist-zip\",\"version\":\"5.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/jattach\",\"version\":\"1.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/azure-application-insights\",\"version\":\"6.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/google-stackdriver\",\"version\":\"10.1.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/java-memory-assistant\",\"version\":\"1.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/encrypt-at-rest\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:10d6de729d36fe52ef2c9fec7b719f4541462afaffd318b77ff70d213aa676e3\",\"homepage\":\"https://github.com/paketo-buildpacks/java\",\"name\":\"Paketo Buildpack for Java\"}},\"paketo-buildpacks/java-memory-assistant\":{\"1.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:823554de12e17033b099864e2c093485b41ae5dc9e8f1844c6ff765ec54816ef\",\"homepage\":\"https://github.com/paketo-buildpacks/java-memory-assistant\",\"name\":\"Paketo Buildpack for Java Memory Assistant\"}},\"paketo-buildpacks/java-native-image\":{\"13.4.0\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.11.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/upx\",\"version\":\"3.9.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/bellsoft-liberica\",\"version\":\"11.5.0\"},{\"id\":\"paketo-buildpacks/syft\",\"version\":\"2.26.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/leiningen\",\"version\":\"4.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/gradle\",\"version\":\"8.1.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/maven\",\"version\":\"6.21.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/sbt\",\"version\":\"6.20.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/executable-jar\",\"version\":\"6.14.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/spring-boot\",\"version\":\"5.34.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/datadog\",\"version\":\"6.3.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/native-image\",\"version\":\"5.17.0\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.11.0\",\"optional\":true}]}],\"layerDiffID\":\"sha256:6b8de0cf631898e2726a76465d86bf8dd23f7a1b5600049c92c6924b5d7c020b\",\"homepage\":\"https://github.com/paketo-buildpacks/java-native-image\",\"name\":\"Paketo Buildpack for Java Native Image\"}},\"paketo-buildpacks/leiningen\":{\"4.14.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:5da334cc1a5f5a8547c391271be1f17fcf26e9c0267b4f60e64a7ea405b711f5\",\"homepage\":\"https://github.com/paketo-buildpacks/leiningen\",\"name\":\"Paketo Buildpack for Leiningen\"}},\"paketo-buildpacks/liberty\":{\"5.2.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:30135044d1dc192c10d88b5f3ebc241c334e2547ceb4ac395e570a2ab04a9955\",\"homepage\":\"https://github.com/paketo-buildpacks/liberty\",\"name\":\"Paketo Buildpack for Liberty\"}},\"paketo-buildpacks/maven\":{\"6.21.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f2c5f1d303a5f9899eb60867bed475b22efe81196e65dca529ec4202df2add7a\",\"homepage\":\"https://github.com/paketo-buildpacks/maven\",\"name\":\"Paketo Buildpack for Maven\"}},\"paketo-buildpacks/miniconda\":{\"0.11.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6cdc62039b6ef1b213ca038728b868dce92083fe73cc26cf2d40dba800027414\",\"name\":\"Paketo Buildpack for Miniconda\"}},\"paketo-buildpacks/mri\":{\"0.19.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:12950567a090257c97b4571ba91ed95b0325bc4f1dfcb241b0c247962124c90b\",\"homepage\":\"https://github.com/paketo-buildpacks/mri\",\"name\":\"Paketo Buildpack for MRI\"}},\"paketo-buildpacks/native-image\":{\"5.17.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8aa620218ab2a34932feaf72ef77d5d4e12c604cbe13cf561dadedaec4ad2bbd\",\"homepage\":\"https://github.com/paketo-buildpacks/native-image\",\"name\":\"Paketo Buildpack for Native Image\"}},\"paketo-buildpacks/nginx\":{\"1.0.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"io.buildpacks.stacks.noble\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26c9e8f2a6b96c5c0ad98dc2052e98d5b5f40845e7cdad8547ca64c55d2caf04\",\"homepage\":\"https://github.com/paketo-buildpacks/nginx\",\"name\":\"Paketo Buildpack for Nginx Server\"}},\"paketo-buildpacks/node-engine\":{\"7.10.0\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b10b749ec43830370981c156153b441cd43bf667ce9ae1295c4457845bff9135\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.2\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:26e7069c94803eaacecbee241b2ad9da43c2c78a2eb2fe7eb80f940231cf84bc\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"},\"7.12.3\":{\"api\":\"0.10\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6bda024f15d22e105a4e17f445559c490bcda7d64a5920cc9ed954b7110a1903\",\"homepage\":\"https://github.com/paketo-buildpacks/node-engine\",\"name\":\"Paketo Buildpack for Node Engine\"}},\"paketo-buildpacks/node-run-script\":{\"2.3.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:7d13d94c9c3b7d2b05f22c1693bdd9cdacfb9d27fe13cb30442a5c1bbade9027\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"},\"2.3.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3c64c2c84bec16cbbdf7cccc5ab569b68f2643e687e9453d11a28475aa69ca82\",\"homepage\":\"https://github.com/paketo-buildpacks/node-run-script\",\"name\":\"Paketo Buildpack for Node Run Script\"}},\"paketo-buildpacks/node-start\":{\"2.5.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:246a45548fc760c9425b65375a9405ef97f7350cb7cb8141d95f46af49fb5661\",\"homepage\":\"https://github.com/paketo-buildpacks/node-start\",\"name\":\"Paketo Buildpack for Node Start\"}},\"paketo-buildpacks/nodejs\":{\"9.15.3\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.12\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.12\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-start\",\"version\":\"2.4.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.5\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\",\"optional\":true},{\"id\":\"paketo-buildpacks/npm-start\",\"version\":\"2.3.11\",\"optional\":true},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.2\"},{\"id\":\"paketo-buildpacks/node-start\",\"version\":\"2.5.12\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:dfbf607a82247baefc001797f3009e28a2ec9e929d0380c37c12d742e7300129\",\"homepage\":\"https://github.com/paketo-buildpacks/nodejs\",\"name\":\"Paketo Buildpack for Node.js\"}},\"paketo-buildpacks/npm-install\":{\"2.2.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b87add57ac2f0b44e64777fdd7a45b98f3967be93ba81f7cc697f83a2b0a851d\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:8fdb8b4ec640368a230857cf9120ddb21d4d198db4f7f4f06961662a79ebbbdd\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-install\",\"name\":\"Paketo Buildpack for NPM Install\"}},\"paketo-buildpacks/npm-start\":{\"2.3.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:23b36e3fc37aac57e4e7e2d1f8b1ad60777403f23ceaff9a2d9a19934bef428e\",\"homepage\":\"https://github.com/paketo-buildpacks/npm-start\",\"name\":\"Paketo Buildpack for NPM Start\"}},\"paketo-buildpacks/passenger\":{\"0.14.14\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"}],\"layerDiffID\":\"sha256:0aacca2fb44eaa17e399760e71940fa8bcd6f94f1cd608d78a15d8bd36dea4e7\",\"homepage\":\"https://github.com/paketo-buildpacks/passenger\",\"name\":\"Paketo Buildpack for Passenger\"}},\"paketo-buildpacks/pip\":{\"0.24.8\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d9546d5db607fc4a5e518e3bed88174ddf8ab43b36ebfe95e0fd8aaa99d5adae\",\"name\":\"Paketo Buildpack for Pip\"}},\"paketo-buildpacks/pip-install\":{\"0.7.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:4fbbdebd97a2eafee90b5017e876e2af5bf303b5ce44e99284ec48ea5bf9fba2\",\"name\":\"Paketo Buildpack for Pip Install\"}},\"paketo-buildpacks/pipenv\":{\"1.23.9\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:6ea959cd838a9424713efc85041b2d51a63b0be1c79f3e4a2c62da5252b627e4\",\"name\":\"Paketo Buildpack for Pipenv\"}},\"paketo-buildpacks/pipenv-install\":{\"0.7.7\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:b7c131c26643a56ce34f594f57e7e4062a87e3aadc1e8256b9a82f6a66c40e67\",\"name\":\"Paketo Buildpack for Pipenv Install\"}},\"paketo-buildpacks/poetry\":{\"0.14.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:29d1521a27f248ab71a6a4a52b4369bcae14eaf359bb2f01f3563dfb40b7e73a\",\"name\":\"Paketo Buildpack for Poetry\"}},\"paketo-buildpacks/poetry-install\":{\"0.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:878574df0f2312c620bb32862e10d1b42fed2bcbe3536ec3e89a90384da0c905\",\"name\":\"Paketo Buildpack for Poetry Install\"}},\"paketo-buildpacks/poetry-run\":{\"0.5.8\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:50f0b954945ec0ea4f7c3271accb462accc292d7e616fd906a22339b15209874\",\"name\":\"Paketo Buildpack for Poetry Run\"}},\"paketo-buildpacks/procfile\":{\"5.11.3\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:1ae462a8cf14c5af191da466423d3d49bbed1c1554307e708cd355b1b8d3f416\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.11.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f09e3a852158fa494840154d1131a606535ff60671303257577a0b0f647ff777\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"},\"5.12.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:3dd977bb0774439e1656e7f704ee8905c5619a390d069fd1d94f612b6b04d80e\",\"homepage\":\"https://github.com/paketo-buildpacks/procfile\",\"name\":\"Paketo Buildpack for Procfile\"}},\"paketo-buildpacks/puma\":{\"0.4.60\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:05d70f6531c14cf56d306fee85086315a75b7720729cbaa7345df925dc96a2d6\",\"homepage\":\"https://github.com/paketo-buildpacks/puma\",\"name\":\"Paketo Buildpack for Puma\"}},\"paketo-buildpacks/python\":{\"2.38.7\":{\"api\":\"0.8\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pipenv\",\"version\":\"1.23.9\"},{\"id\":\"paketo-buildpacks/pipenv-install\",\"version\":\"0.7.7\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/pip-install\",\"version\":\"0.7.9\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/miniconda\",\"version\":\"0.11.6\"},{\"id\":\"paketo-buildpacks/conda-env-update\",\"version\":\"0.8.3\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/poetry-run\",\"version\":\"0.5.8\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/pip\",\"version\":\"0.24.8\"},{\"id\":\"paketo-buildpacks/poetry\",\"version\":\"0.14.5\"},{\"id\":\"paketo-buildpacks/poetry-install\",\"version\":\"0.6.12\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/cpython\",\"version\":\"1.18.4\"},{\"id\":\"paketo-buildpacks/python-start\",\"version\":\"0.15.4\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true}]}],\"layerDiffID\":\"sha256:1f8f2ac8eb9771ae0198af551e4d669741ebfb047daccf1a36cb86fcde2333e0\",\"name\":\"Paketo Buildpack for Python\"}},\"paketo-buildpacks/python-start\":{\"0.15.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:19e76c58cd61db65efe87efd11638d364ee17210b6981d45540ca44d17927412\",\"homepage\":\"https://github.com/paketo-buildpacks/python-start\",\"name\":\"Paketo Buildpack for Python Start\"}},\"paketo-buildpacks/rackup\":{\"0.4.52\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:9239077bb72dba9e1ceee8e44c859867a5ff88986f7af7da1d74ba962c7af78b\",\"homepage\":\"https://github.com/paketo-buildpacks/rackup\",\"name\":\"Paketo Buildpack for Rackup\"}},\"paketo-buildpacks/rails-assets\":{\"0.10.25\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:dfe0506e5875de8f478ef1e5cb1737a6134e64933d40b299d627baa4582645e2\",\"homepage\":\"https://github.com/paketo-buildpacks/rails-assets\",\"name\":\"Paketo Buildpack for Rails Assets\"}},\"paketo-buildpacks/rake\":{\"0.4.61\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:4180943a869e425db70d6cec82873e69d4b36cbdcd19fd842b7931d6d5f22a3d\",\"homepage\":\"https://github.com/paketo-buildpacks/rake\",\"name\":\"Paketo Buildpack for Rake\"}},\"paketo-buildpacks/ruby\":{\"0.47.12\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/puma\",\"version\":\"0.4.60\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/thin\",\"version\":\"0.5.56\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/unicorn\",\"version\":\"0.4.59\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/passenger\",\"version\":\"0.14.14\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\"},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\"},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.10.0\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.6\",\"optional\":true},{\"id\":\"paketo-buildpacks/rails-assets\",\"version\":\"0.10.25\",\"optional\":true},{\"id\":\"paketo-buildpacks/rackup\",\"version\":\"0.4.52\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/mri\",\"version\":\"0.19.0\"},{\"id\":\"paketo-buildpacks/bundler\",\"version\":\"0.8.48\",\"optional\":true},{\"id\":\"paketo-buildpacks/bundle-install\",\"version\":\"0.8.18\",\"optional\":true},{\"id\":\"paketo-buildpacks/rake\",\"version\":\"0.4.61\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.2\",\"optional\":true}]}],\"layerDiffID\":\"sha256:f8fa03d781b336b028a82dbcded41f84a948e216f76717c2f5e4c6366ea5fc6d\",\"homepage\":\"https://github.com/paketo-buildpacks/ruby\",\"name\":\"Paketo Buildpack for Ruby\"}},\"paketo-buildpacks/sbt\":{\"6.20.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:bc25ff78096cf537725137d75f745185acc27cf592d84b9bc3d5c56b4acb9fbe\",\"homepage\":\"https://github.com/paketo-buildpacks/sbt\",\"name\":\"Paketo Buildpack for SBT\"}},\"paketo-buildpacks/source-removal\":{\"1.0.4\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:00f48177322bd50a805b68c1672675a5570f5edecee836a24c3be3ee9f003fab\",\"homepage\":\"https://github.com/paketo-buildpacks/source-removal\",\"name\":\"Paketo Buildpack for Source Removal\"}},\"paketo-buildpacks/spring-boot\":{\"5.34.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a5e2e3fbf9c5fd20adf1a0492fac8f9f04afa9f03d1bdcf7da431092da23a0dd\",\"homepage\":\"https://github.com/paketo-buildpacks/spring-boot\",\"name\":\"Paketo Buildpack for Spring Boot\"}},\"paketo-buildpacks/syft\":{\"2.26.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:2db45ca58e850582ba0bde4dce8b629b5a591df99fff88bd43f74e843d8bc117\",\"homepage\":\"https://github.com/paketo-buildpacks/syft\",\"name\":\"Paketo Buildpack for Syft\"}},\"paketo-buildpacks/thin\":{\"0.5.56\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:c11e903780bd09acfc7e9fc1521e74ca270311a68b5c4ece0de3fc694c0552f7\",\"homepage\":\"https://github.com/paketo-buildpacks/thin\",\"name\":\"Paketo Buildpack for Thin\"}},\"paketo-buildpacks/unicorn\":{\"0.4.59\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"layerDiffID\":\"sha256:159c2dbd343d3cf049bfc9038c6d40b106b2daafc60000825a42b9f8d48dd20d\",\"homepage\":\"https://github.com/paketo-buildpacks/unicorn\",\"name\":\"Paketo Buildpack for Unicorn\"}},\"paketo-buildpacks/upx\":{\"3.9.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.paketo.stacks.tiny\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:f66d86daf4b3734c6c23dd6bc95b25264d4a54882d70245ecd3750f6a35634e8\",\"homepage\":\"https://github.com/paketo-buildpacks/upx\",\"name\":\"Paketo Buildpack for UPX\"}},\"paketo-buildpacks/vsdbg\":{\"0.6.4\":{\"api\":\"0.8\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:56deb2c0c6b0dd4934b9c6dc61fc2fb4348e8c23b7f00939b9e5efe0455ab6e7\",\"name\":\"Paketo Buildpack for Visual Studio Debugger\"}},\"paketo-buildpacks/watchexec\":{\"3.5.5\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d5a5c37bd4c5edef348a7b60db8b10638876d76583377d4e2ffb2a1badb470ce\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"},\"3.6.0\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:51f16a6caf7f2444eaf02dfdc8545364e6b86e156d903022b7ebd64558693e2a\",\"homepage\":\"https://github.com/paketo-buildpacks/watchexec\",\"name\":\"Paketo Buildpack for Watchexec\"}},\"paketo-buildpacks/web-servers\":{\"3.3.4\":{\"api\":\"0.7\",\"order\":[{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/yarn\",\"version\":\"2.2.13\"},{\"id\":\"paketo-buildpacks/yarn-install\",\"version\":\"2.6.13\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/node-engine\",\"version\":\"7.12.3\"},{\"id\":\"paketo-buildpacks/npm-install\",\"version\":\"2.2.6\"},{\"id\":\"paketo-buildpacks/node-run-script\",\"version\":\"2.3.13\"},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/nginx\",\"version\":\"1.0.6\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/ca-certificates\",\"version\":\"3.10.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/watchexec\",\"version\":\"3.5.5\",\"optional\":true},{\"id\":\"paketo-buildpacks/httpd\",\"version\":\"1.0.2\"},{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.11.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/environment-variables\",\"version\":\"4.9.4\",\"optional\":true},{\"id\":\"paketo-buildpacks/image-labels\",\"version\":\"4.10.3\",\"optional\":true},{\"id\":\"paketo-buildpacks/source-removal\",\"version\":\"1.0.4\"}]}],\"layerDiffID\":\"sha256:fc88366d8227ed2e46b8f9155be4f9b8dc5db41ed99f21d7c0d86994d88198d3\",\"homepage\":\"https://github.com/paketo-buildpacks/web-servers\",\"name\":\"Paketo Buildpack for Web Servers\"}},\"paketo-buildpacks/yarn\":{\"2.2.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:9fd37bcfd86828056f727e0d4fc77a85502e73f5c6df4fe04394ee54a0302475\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:a01c44152ac064d711fde90d92ebac0a3cb0a7f44107306f639ece74a7009fd2\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"},\"2.2.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"io.buildpacks.stacks.bionic\"},{\"id\":\"io.buildpacks.stacks.jammy\"},{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:e286407ffff87fb44647d0133d5a8e354326324f8a7ec9ed92d1ba4ecf7bc4a4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn\",\"name\":\"Paketo Buildpack for Yarn\"}},\"paketo-buildpacks/yarn-install\":{\"2.6.12\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:d8bf29e1734fd11a05d25f55cf183851ca879bd2a993aa3af509a9d28ca71992\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.13\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:861df399ccb849e0fb5eaa9c49d9e7104fd8509c43b9ac7f84d55307374f5ed4\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"},\"2.6.6\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:da7fbe711eefcf00425062319d0aef4c421a078e785a41cbebdfed199f2255dd\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-install\",\"name\":\"Paketo Buildpack for Yarn Install\"}},\"paketo-buildpacks/yarn-start\":{\"2.4.11\":{\"api\":\"0.7\",\"stacks\":[{\"id\":\"*\"}],\"targets\":[{\"os\":\"linux\",\"arch\":\"amd64\"},{\"os\":\"linux\",\"arch\":\"arm64\"}],\"layerDiffID\":\"sha256:ffd4ac890c70dfe22d094f29d59f076464a9455e721e71e59e1996e843398aba\",\"homepage\":\"https://github.com/paketo-buildpacks/yarn-start\",\"name\":\"Paketo Buildpack for Yarn Start\"}}}","io.buildpacks.buildpack.order":"[{\"group\":[{\"id\":\"paketo-buildpacks/ruby\",\"version\":\"0.47.12\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/dotnet-core\",\"version\":\"3.10.1\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/go\",\"version\":\"4.18.10\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java-native-image\",\"version\":\"13.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/java\",\"version\":\"20.4.0\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/web-servers\",\"version\":\"3.3.4\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/nodejs\",\"version\":\"9.15.3\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/python\",\"version\":\"2.38.7\"}]},{\"group\":[{\"id\":\"paketo-buildpacks/procfile\",\"version\":\"5.12.0\"}]}]","io.buildpacks.buildpack.order-extensions":"null","io.buildpacks.extension.layers":"{}","io.buildpacks.stack.description":"ubuntu:jammy with compilers and shell utilities","io.buildpacks.stack.distro.name":"ubuntu","io.buildpacks.stack.distro.version":"22.04","io.buildpacks.stack.homepage":"https://github.com/paketo-buildpacks/jammy-base-stack","io.buildpacks.stack.id":"io.buildpacks.stacks.jammy","io.buildpacks.stack.maintainer":"Paketo Buildpacks","io.buildpacks.stack.metadata":"{}","io.buildpacks.stack.mixins":"null","io.buildpacks.stack.released":"2025-12-08T04:44:03Z","org.opencontainers.image.ref.name":"ubuntu","org.opencontainers.image.version":"22.04"},"OnBuild":null,"User":"1001:1000","Volumes":null,"WorkingDir":"/layers"}} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78/tag?repo=pack.local%2Fbuilder%2F11111111111111111111&tag=latest - method: POST - response: - body: "" - headers: - Api-Version: - - "1.51" - Content-Length: - - "0" - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 201 Created - code: 201 - duration: "" -- request: - body: | - {"Id":"a2c1b5af8cbc948d73893c8cc276bb2edb909dbe7ce198d4d6f9997df630fb9c","Warning":""} - form: {} - headers: - Content-Type: - - application/json - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/create - method: POST - response: - body: | - {"Id":"a2c1b5af8cbc948d73893c8cc276bb2edb909dbe7ce198d4d6f9997df630fb9c","Warning":""} - headers: - Api-Version: - - "1.51" - Content-Length: - - "87" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 201 Created - code: 201 - duration: "" -- request: - body: | - {"Id":"201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9","Warnings":[]} - form: {} - headers: - Content-Type: - - application/json - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/create - method: POST - response: - body: | - {"Id":"201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9","Warnings":[]} - headers: - Api-Version: - - "1.51" - Content-Length: - - "88" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 201 Created - code: 201 - duration: "" -- request: - body: "" - form: {} - headers: - Content-Type: - - text/plain - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/archive?noOverwriteDirNonDir=true&path=%2F - method: PUT - response: - body: "" - headers: - Api-Version: - - "1.51" - Content-Length: - - "0" - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - Content-Type: - - text/plain - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/archive?noOverwriteDirNonDir=true&path=%2F - method: PUT - response: - body: "" - headers: - Api-Version: - - "1.51" - Content-Length: - - "0" - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/start - method: POST - response: - body: "" - headers: - Api-Version: - - "1.51" - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 204 No Content - code: 204 - duration: "" -- request: - body: !!binary | - AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAbEltYWdlIHdpdGggbm - FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1k - dXlpL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 - szNm09PT0+IERFVEVDVElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVy - c2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCg - EAAAAAAATXPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4zLjEzID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbG - RdIGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4zLjEzICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL2 - 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0 - KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL2 - 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1 - aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyA9PT09PT09PQpjb3VsZCBub3QgZm - luZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1 - aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyAoMSkKPT09PT09PT0gT3V0cHV0Oi - BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzID09PT09PT09CmNv - dWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6IC - BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzICgxKQo9PT09PT09 - PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgPT - 09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5q - c29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgKD - EpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 - QDIuMy4xMiA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbi - BwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 - QDIuMy4xMiAoMSkKNSBvZiAxMSBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLW - J1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzIDMuMTAuNQpwYWtldG8tYnVpbGRwYWNrcy9u - b2RlLWVuZ2luZSAgICAgNy4xMi4yCnBha2V0by1idWlsZHBhY2tzL25wbS1pbnN0YWxsIC - AgICAyLjIuNQpwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXN0YXJ0ICAgICAgMi41LjEyCnBh - a2V0by1idWlsZHBhY2tzL25wbS1zdGFydCAgICAgICAyLjMuMTEKAQAAAAAAABgbWzM2bT - 09PT4gUkVTVE9SSU5HG1swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAA - AAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZW - FkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCgEAAAAAAABMG1szNG0bWzBtChtbMzRtG1sx - bVBha2V0byBCdWlsZHBhY2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLj - UbWzBtCgEAAAAAAABEICAbWzM0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1 - aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzG1swbQoBAAAAAAAAHyAgG1sybUJ1aWxkIENvbm - ZpZ3VyYXRpb246G1swbQoBAAAAAAAAWBtbMm0gICAgJEJQX0VNQkVEX0NFUlRTICAgICAg - ICAgICAgICAgICAgICBmYWxzZSAgRW1iZWQgY2VydGlmaWNhdGVzIGludG8gdGhlIGltYW - dlG1swbQoBAAAAAAAAghtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0NFUlRfQklORElO - RyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2VydGlmaWNhdGUgaG - VscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQoBAAAAAAAAbxtbMm0g - ICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBmYWxzZSAgRGlzYWJsZS - BjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bnRpbWUbWzBt - CgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMzbUNvbnRyaWJ1dGluZx - tbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC9sYXllcnMvcGFrZXRv - LWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVjLmQvY2EtY2VydGlmaW - NhdGVzLWhlbHBlchtbMG0KAQAAAAAAAKhQYWtldG8gQnVpbGRwYWNrIGZvciBOb2RlIEVu - Z2luZSA3LjEyLjIKICBSZXNvbHZpbmcgTm9kZSBFbmdpbmUgdmVyc2lvbgogICAgQ2FuZG - lkYXRlIHZlcnNpb24gc291cmNlcyAoaW4gcHJpb3JpdHkgb3JkZXIpOgogICAgICAgICAg - ICAgICAgLT4gIiIKICAgICAgPHVua25vd24+IC0+ICIiCgoBAAAAAAAANCAgICBTZWxlY3 - RlZCBOb2RlIEVuZ2luZSB2ZXJzaW9uICh1c2luZyApOiAyMi4yMS4xCgoBAAAAAAAAPSAg - RXhlY3V0aW5nIGJ1aWxkIHByb2Nlc3MKICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj - IuMjEuMQoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA4LjkxNnMKCiAgR2VuZXJhdGlu - ZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUtZW5naW5lL25vZG - UKAQAAAAAAABcgICAgICBDb21wbGV0ZWQgaW4gMHMKCgEAAAAAAAJhICBDb25maWd1cmlu - ZyBidWlsZCBlbnZpcm9ubWVudAogICAgTk9ERV9FTlYgICAgIC0+ICJwcm9kdWN0aW9uIg - ogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUt - ZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW5zc2wtY2EiCi - AgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBsYXVuY2ggZW52 - aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKICAgIE5PREVfSE - 9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9ub2Rl - IgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogICAgTk9ERV9WRV - JCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGltaXplLW1lbW9y - eQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb24gY29udGFpbm - VyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFibGUgaW4gdGhl - IE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgICBXcml0aW5nIG - V4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNrIGZvciBOUE0g - SW5zdGFsbCAyLjIuNQoBAAAAAAAANSAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZX - NzCiAgICBQcm9jZXNzIGlucHV0czoKAQAAAAAAAHIgICAgICBub2RlX21vZHVsZXMgICAg - ICAtPiAiTm90IGZvdW5kIgogICAgICBucG0tY2FjaGUgICAgICAgICAtPiAiTm90IGZvdW - 5kIgogICAgICBwYWNrYWdlLWxvY2suanNvbiAtPiAiRm91bmQiCgoBAAAAAAAAKiAgICBT - ZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAAAvICBFeGVjdX - RpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAAAAAAWyAgICBS - dW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcnMvcGFrZXRvLW - J1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAgICAgIAogICAg - ICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZXMgaW4gMXMKIC - AgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRpbmcKICAgICAg - ICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIAogICAgICA2IH - Z1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAgIFRvIGFkZHJl - c3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKICAgICAgCiAgIC - AgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAgICBucG0gbm90 - aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2YgbnBtIGF2YWlsYW - JsZSEgMTAuOS40IC0+IDExLjcuMAogICAgICBucG0gbm90aWNlIENoYW5nZWxvZzogaHR0 - cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS43LjAKICAgICAgbn - BtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1AMTEuNy4wCiAg - ICAgIG5wbSBub3RpY2UKAQAAAAAAAYogICAgICBDb21wbGV0ZWQgaW4gMS40OTdzCgogIE - NvbmZpZ3VyaW5nIGxhdW5jaCBlbnZpcm9ubWVudAogICAgTk9ERV9QUk9KRUNUX1BBVEgg - ICAtPiAiL3dvcmtzcGFjZSIKICAgIE5QTV9DT05GSUdfTE9HTEVWRUwgLT4gImVycm9yIg - ogICAgUEFUSCAgICAgICAgICAgICAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNr - c19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbl9sb2NhbD - okUEFUSDovbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1pbnN0YWxsL2xhdW5jaC1t - b2R1bGVzL25vZGVfbW9kdWxlcy8uYmluIgoKICBHZW5lcmF0aW5nIFNCT00gZm9yIC9sYX - llcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZXMKAQAA - AAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS44MDhzCgoBAAAAAAAAAQoBAAAAAAAAZ1Bha2 - V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQgMi41LjEyCiAgQXNzaWduaW5nIGxhdW5j - aCBwcm9jZXNzZXM6CiAgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAA - AAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5QTSBTdGFydCAyLjMuMTEKAQAAAAAAAEkgIEFz - c2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogc2ggL3dvcm - tzcGFjZS9zdGFydC5zaAoKAQAAAAAAABgbWzM2bT09PT4gRVhQT1JUSU5HG1swbQoBAAAA - AAAAOEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzOm - hlbHBlcicKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUt - ZW5naW5lOm5vZGUnCgEAAAAAAAA8QWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy - 9ucG0taW5zdGFsbDpsYXVuY2gtbW9kdWxlcycKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ2J1 - aWxkcGFja3Npby9saWZlY3ljbGU6bGF1bmNoLnNib20nCgEAAAAAAAAXQWRkZWQgMS8xIG - FwcCBsYXllcihzKQoBAAAAAAAAL0FkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVj - eWNsZTpsYXVuY2hlcicKAQAAAAAAAC1BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saW - ZlY3ljbGU6Y29uZmlnJwoBAAAAAAAANEFkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xp - ZmVjeWNsZTpwcm9jZXNzLXR5cGVzJwoBAAAAAAAAMEFkZGluZyBsYWJlbCAnaW8uYnVpbG - RwYWNrcy5saWZlY3ljbGUubWV0YWRhdGEnCgEAAAAAAAAsQWRkaW5nIGxhYmVsICdpby5i - dWlsZHBhY2tzLmJ1aWxkLm1ldGFkYXRhJwoBAAAAAAAALkFkZGluZyBsYWJlbCAnaW8uYn - VpbGRwYWNrcy5wcm9qZWN0Lm1ldGFkYXRhJwoBAAAAAAAAI1NldHRpbmcgZGVmYXVsdCBw - cm9jZXNzIHR5cGUgJ3dlYicKAQAAAAAAAFpTYXZpbmcgcmcuZnItcGFyLnNjdy5jbG91ZC - 9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpL2NsaS10LWN0bnItZGVwbG95LWJw - OmxhdGVzdC4uLgoBAAAAAAAAcSoqKiBJbWFnZXMgKDBkZTk4NjdlMjBlNSk6CiAgICAgIH - JnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Njd2NsaXRjdG5yZGVwbG95YnB6bGltZHV5aS9j - bGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3QKAQAAAAAAADhBZGRpbmcgY2FjaGUgbGF5ZX - IgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUtZW5naW5lOm5vZGUnCgEAAAAAAAA9QWRkaW5n - IGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbDpucG0tY2FjaG - UnCgEAAAAAAAA3QWRkaW5nIGNhY2hlIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl - OmNhY2hlLnNib20nCg== - form: {} - headers: - Connection: - - Upgrade - Content-Type: - - text/plain - Upgrade: - - tcp - url: http://%2Fvar%2Frun%2Fdocker.sock/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/attach?stderr=1&stdout=1&stream=1 - method: POST - response: - body: !!binary | - AQAAAAAAABgbWzM2bT09PT4gQU5BTFlaSU5HG1swbQoBAAAAAAAAbEltYWdlIHdpdGggbm - FtZSAicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1k - dXlpL2NsaS10LWN0bnItZGVwbG95LWJwOmxhdGVzdCIgbm90IGZvdW5kCgEAAAAAAAAYG1 - szNm09PT0+IERFVEVDVElORxtbMG0KAQAAAAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVy - c2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZWFkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCg - EAAAAAAATXPT09PT09PT0gT3V0cHV0OiBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4zLjEzID09PT09PT09CmNvdWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbG - RdIGluIHBhY2thZ2UuanNvbgplcnI6ICBwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1z - Y3JpcHRAMi4zLjEzICgxKQo9PT09PT09PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL2 - 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgPT09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0 - KHMpIFtidWlsZF0gaW4gcGFja2FnZS5qc29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL2 - 5vZGUtcnVuLXNjcmlwdEAyLjMuMTMgKDEpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1 - aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyA9PT09PT09PQpjb3VsZCBub3QgZm - luZCBzY3JpcHQocykgW2J1aWxkXSBpbiBwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1 - aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0QDIuMy4xMyAoMSkKPT09PT09PT0gT3V0cHV0Oi - BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzID09PT09PT09CmNv - dWxkIG5vdCBmaW5kIHNjcmlwdChzKSBbYnVpbGRdIGluIHBhY2thZ2UuanNvbgplcnI6IC - BwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXJ1bi1zY3JpcHRAMi4zLjEzICgxKQo9PT09PT09 - PSBPdXRwdXQ6IHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgPT - 09PT09PT0KY291bGQgbm90IGZpbmQgc2NyaXB0KHMpIFtidWlsZF0gaW4gcGFja2FnZS5q - c29uCmVycjogIHBha2V0by1idWlsZHBhY2tzL25vZGUtcnVuLXNjcmlwdEAyLjMuMTIgKD - EpCj09PT09PT09IE91dHB1dDogcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 - QDIuMy4xMiA9PT09PT09PQpjb3VsZCBub3QgZmluZCBzY3JpcHQocykgW2J1aWxkXSBpbi - BwYWNrYWdlLmpzb24KZXJyOiAgcGFrZXRvLWJ1aWxkcGFja3Mvbm9kZS1ydW4tc2NyaXB0 - QDIuMy4xMiAoMSkKNSBvZiAxMSBidWlsZHBhY2tzIHBhcnRpY2lwYXRpbmcKcGFrZXRvLW - J1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzIDMuMTAuNQpwYWtldG8tYnVpbGRwYWNrcy9u - b2RlLWVuZ2luZSAgICAgNy4xMi4yCnBha2V0by1idWlsZHBhY2tzL25wbS1pbnN0YWxsIC - AgICAyLjIuNQpwYWtldG8tYnVpbGRwYWNrcy9ub2RlLXN0YXJ0ICAgICAgMi41LjEyCnBh - a2V0by1idWlsZHBhY2tzL25wbS1zdGFydCAgICAgICAyLjMuMTEKAQAAAAAAABgbWzM2bT - 09PT4gUkVTVE9SSU5HG1swbQoBAAAAAAAAFxtbMzZtPT09PiBCVUlMRElORxtbMG0KAQAA - AAAAAEp0YXJnZXQgZGlzdHJvIG5hbWUvdmVyc2lvbiBsYWJlbHMgbm90IGZvdW5kLCByZW - FkaW5nIC9ldGMvb3MtcmVsZWFzZSBmaWxlCgEAAAAAAABMG1szNG0bWzBtChtbMzRtG1sx - bVBha2V0byBCdWlsZHBhY2sgZm9yIENBIENlcnRpZmljYXRlcxtbMG0bWzM0bSAzLjEwLj - UbWzBtCgEAAAAAAABEICAbWzM0OzI7M21odHRwczovL2dpdGh1Yi5jb20vcGFrZXRvLWJ1 - aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzG1swbQoBAAAAAAAAHyAgG1sybUJ1aWxkIENvbm - ZpZ3VyYXRpb246G1swbQoBAAAAAAAAWBtbMm0gICAgJEJQX0VNQkVEX0NFUlRTICAgICAg - ICAgICAgICAgICAgICBmYWxzZSAgRW1iZWQgY2VydGlmaWNhdGVzIGludG8gdGhlIGltYW - dlG1swbQoBAAAAAAAAghtbMm0gICAgJEJQX0VOQUJMRV9SVU5USU1FX0NFUlRfQklORElO - RyAgICB0cnVlICAgRGVwcmVjYXRlZDogRW5hYmxlL2Rpc2FibGUgY2VydGlmaWNhdGUgaG - VscGVyIGxheWVyIHRvIGFkZCBjZXJ0cyBhdCBydW50aW1lG1swbQoBAAAAAAAAbxtbMm0g - ICAgJEJQX1JVTlRJTUVfQ0VSVF9CSU5ESU5HX0RJU0FCTEVEICBmYWxzZSAgRGlzYWJsZS - BjZXJ0aWZpY2F0ZSBoZWxwZXIgbGF5ZXIgdG8gYWRkIGNlcnRzIGF0IHJ1bnRpbWUbWzBt - CgEAAAAAAAA5ICAbWzM0bUxhdW5jaCBIZWxwZXIbWzBtOiAbWzMzbUNvbnRyaWJ1dGluZx - tbMG0gdG8gbGF5ZXIKAQAAAAAAAGQbWzJtICAgIENyZWF0aW5nIC9sYXllcnMvcGFrZXRv - LWJ1aWxkcGFja3NfY2EtY2VydGlmaWNhdGVzL2hlbHBlci9leGVjLmQvY2EtY2VydGlmaW - NhdGVzLWhlbHBlchtbMG0KAQAAAAAAAKhQYWtldG8gQnVpbGRwYWNrIGZvciBOb2RlIEVu - Z2luZSA3LjEyLjIKICBSZXNvbHZpbmcgTm9kZSBFbmdpbmUgdmVyc2lvbgogICAgQ2FuZG - lkYXRlIHZlcnNpb24gc291cmNlcyAoaW4gcHJpb3JpdHkgb3JkZXIpOgogICAgICAgICAg - ICAgICAgLT4gIiIKICAgICAgPHVua25vd24+IC0+ICIiCgoBAAAAAAAANCAgICBTZWxlY3 - RlZCBOb2RlIEVuZ2luZSB2ZXJzaW9uICh1c2luZyApOiAyMi4yMS4xCgoBAAAAAAAAPSAg - RXhlY3V0aW5nIGJ1aWxkIHByb2Nlc3MKICAgIEluc3RhbGxpbmcgTm9kZSBFbmdpbmUgMj - IuMjEuMQoBAAAAAAAAXCAgICAgIENvbXBsZXRlZCBpbiA4LjkxNnMKCiAgR2VuZXJhdGlu - ZyBTQk9NIGZvciAvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUtZW5naW5lL25vZG - UKAQAAAAAAABcgICAgICBDb21wbGV0ZWQgaW4gMHMKCgEAAAAAAAJhICBDb25maWd1cmlu - ZyBidWlsZCBlbnZpcm9ubWVudAogICAgTk9ERV9FTlYgICAgIC0+ICJwcm9kdWN0aW9uIg - ogICAgTk9ERV9IT01FICAgIC0+ICIvbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25vZGUt - ZW5naW5lL25vZGUiCiAgICBOT0RFX09QVElPTlMgLT4gIi0tdXNlLW9wZW5zc2wtY2EiCi - AgICBOT0RFX1ZFUkJPU0UgLT4gImZhbHNlIgoKICBDb25maWd1cmluZyBsYXVuY2ggZW52 - aXJvbm1lbnQKICAgIE5PREVfRU5WICAgICAtPiAicHJvZHVjdGlvbiIKICAgIE5PREVfSE - 9NRSAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNrc19ub2RlLWVuZ2luZS9ub2Rl - IgogICAgTk9ERV9PUFRJT05TIC0+ICItLXVzZS1vcGVuc3NsLWNhIgogICAgTk9ERV9WRV - JCT1NFIC0+ICJmYWxzZSIKCiAgICBXcml0aW5nIGV4ZWMuZC8wLW9wdGltaXplLW1lbW9y - eQogICAgICBDYWxjdWxhdGVzIGF2YWlsYWJsZSBtZW1vcnkgYmFzZWQgb24gY29udGFpbm - VyIGxpbWl0cyBhdCBsYXVuY2ggdGltZS4KICAgICAgTWFkZSBhdmFpbGFibGUgaW4gdGhl - IE1FTU9SWV9BVkFJTEFCTEUgZW52aXJvbm1lbnQgdmFyaWFibGUuCiAgICBXcml0aW5nIG - V4ZWMuZC8xLWluc3BlY3RvcgoKAQAAAAAAACdQYWtldG8gQnVpbGRwYWNrIGZvciBOUE0g - SW5zdGFsbCAyLjIuNQoBAAAAAAAANSAgUmVzb2x2aW5nIGluc3RhbGxhdGlvbiBwcm9jZX - NzCiAgICBQcm9jZXNzIGlucHV0czoKAQAAAAAAAHIgICAgICBub2RlX21vZHVsZXMgICAg - ICAtPiAiTm90IGZvdW5kIgogICAgICBucG0tY2FjaGUgICAgICAgICAtPiAiTm90IGZvdW - 5kIgogICAgICBwYWNrYWdlLWxvY2suanNvbiAtPiAiRm91bmQiCgoBAAAAAAAAKiAgICBT - ZWxlY3RlZCBOUE0gYnVpbGQgcHJvY2VzczogJ25wbSBjaScKCgEAAAAAAAAvICBFeGVjdX - RpbmcgbGF1bmNoIGVudmlyb25tZW50IGluc3RhbGwgcHJvY2VzcwoBAAAAAAAAWyAgICBS - dW5uaW5nICducG0gY2kgLS11bnNhZmUtcGVybSAtLWNhY2hlIC9sYXllcnMvcGFrZXRvLW - J1aWxkcGFja3NfbnBtLWluc3RhbGwvbnBtLWNhY2hlJwoBAAAAAAAAkSAgICAgIAogICAg - ICBhZGRlZCA1NyBwYWNrYWdlcywgYW5kIGF1ZGl0ZWQgNTggcGFja2FnZXMgaW4gMXMKIC - AgICAgCiAgICAgIDcgcGFja2FnZXMgYXJlIGxvb2tpbmcgZm9yIGZ1bmRpbmcKICAgICAg - ICBydW4gYG5wbSBmdW5kYCBmb3IgZGV0YWlscwoBAAAAAAAAmCAgICAgIAogICAgICA2IH - Z1bG5lcmFiaWxpdGllcyAoMyBsb3csIDMgaGlnaCkKICAgICAgCiAgICAgIFRvIGFkZHJl - c3MgYWxsIGlzc3VlcywgcnVuOgogICAgICAgIG5wbSBhdWRpdCBmaXgKICAgICAgCiAgIC - AgIFJ1biBgbnBtIGF1ZGl0YCBmb3IgZGV0YWlscy4KAQAAAAAAAO4gICAgICBucG0gbm90 - aWNlCiAgICAgIG5wbSBub3RpY2UgTmV3IG1ham9yIHZlcnNpb24gb2YgbnBtIGF2YWlsYW - JsZSEgMTAuOS40IC0+IDExLjcuMAogICAgICBucG0gbm90aWNlIENoYW5nZWxvZzogaHR0 - cHM6Ly9naXRodWIuY29tL25wbS9jbGkvcmVsZWFzZXMvdGFnL3YxMS43LjAKICAgICAgbn - BtIG5vdGljZSBUbyB1cGRhdGUgcnVuOiBucG0gaW5zdGFsbCAtZyBucG1AMTEuNy4wCiAg - ICAgIG5wbSBub3RpY2UKAQAAAAAAAYogICAgICBDb21wbGV0ZWQgaW4gMS40OTdzCgogIE - NvbmZpZ3VyaW5nIGxhdW5jaCBlbnZpcm9ubWVudAogICAgTk9ERV9QUk9KRUNUX1BBVEgg - ICAtPiAiL3dvcmtzcGFjZSIKICAgIE5QTV9DT05GSUdfTE9HTEVWRUwgLT4gImVycm9yIg - ogICAgUEFUSCAgICAgICAgICAgICAgICAtPiAiL2xheWVycy9wYWtldG8tYnVpbGRwYWNr - c19ucG0taW5zdGFsbC9sYXVuY2gtbW9kdWxlcy9ub2RlX21vZHVsZXMvLmJpbl9sb2NhbD - okUEFUSDovbGF5ZXJzL3Bha2V0by1idWlsZHBhY2tzX25wbS1pbnN0YWxsL2xhdW5jaC1t - b2R1bGVzL25vZGVfbW9kdWxlcy8uYmluIgoKICBHZW5lcmF0aW5nIFNCT00gZm9yIC9sYX - llcnMvcGFrZXRvLWJ1aWxkcGFja3NfbnBtLWluc3RhbGwvbGF1bmNoLW1vZHVsZXMKAQAA - AAAAABsgICAgICBDb21wbGV0ZWQgaW4gMS44MDhzCgoBAAAAAAAAAQoBAAAAAAAAZ1Bha2 - V0byBCdWlsZHBhY2sgZm9yIE5vZGUgU3RhcnQgMi41LjEyCiAgQXNzaWduaW5nIGxhdW5j - aCBwcm9jZXNzZXM6CiAgICB3ZWIgKGRlZmF1bHQpOiBub2RlIGluZGV4LmpzCgoBAAAAAA - AAJlBha2V0byBCdWlsZHBhY2sgZm9yIE5QTSBTdGFydCAyLjMuMTEKAQAAAAAAAEkgIEFz - c2lnbmluZyBsYXVuY2ggcHJvY2Vzc2VzOgogICAgd2ViIChkZWZhdWx0KTogc2ggL3dvcm - tzcGFjZS9zdGFydC5zaAoKAQAAAAAAABgbWzM2bT09PT4gRVhQT1JUSU5HG1swbQoBAAAA - AAAAOEFkZGluZyBsYXllciAncGFrZXRvLWJ1aWxkcGFja3MvY2EtY2VydGlmaWNhdGVzOm - hlbHBlcicKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUt - ZW5naW5lOm5vZGUnCgEAAAAAAAA8QWRkaW5nIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy - 9ucG0taW5zdGFsbDpsYXVuY2gtbW9kdWxlcycKAQAAAAAAADJBZGRpbmcgbGF5ZXIgJ2J1 - aWxkcGFja3Npby9saWZlY3ljbGU6bGF1bmNoLnNib20nCgEAAAAAAAAXQWRkZWQgMS8xIG - FwcCBsYXllcihzKQoBAAAAAAAAL0FkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xpZmVj - eWNsZTpsYXVuY2hlcicKAQAAAAAAAC1BZGRpbmcgbGF5ZXIgJ2J1aWxkcGFja3Npby9saW - ZlY3ljbGU6Y29uZmlnJwoBAAAAAAAANEFkZGluZyBsYXllciAnYnVpbGRwYWNrc2lvL2xp - ZmVjeWNsZTpwcm9jZXNzLXR5cGVzJwoBAAAAAAAAMEFkZGluZyBsYWJlbCAnaW8uYnVpbG - RwYWNrcy5saWZlY3ljbGUubWV0YWRhdGEnCgEAAAAAAAAsQWRkaW5nIGxhYmVsICdpby5i - dWlsZHBhY2tzLmJ1aWxkLm1ldGFkYXRhJwoBAAAAAAAALkFkZGluZyBsYWJlbCAnaW8uYn - VpbGRwYWNrcy5wcm9qZWN0Lm1ldGFkYXRhJwoBAAAAAAAAI1NldHRpbmcgZGVmYXVsdCBw - cm9jZXNzIHR5cGUgJ3dlYicKAQAAAAAAAFpTYXZpbmcgcmcuZnItcGFyLnNjdy5jbG91ZC - 9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpL2NsaS10LWN0bnItZGVwbG95LWJw - OmxhdGVzdC4uLgoBAAAAAAAAcSoqKiBJbWFnZXMgKDBkZTk4NjdlMjBlNSk6CiAgICAgIH - JnLmZyLXBhci5zY3cuY2xvdWQvZnVuY3Njd2NsaXRjdG5yZGVwbG95YnB6bGltZHV5aS9j - bGktdC1jdG5yLWRlcGxveS1icDpsYXRlc3QKAQAAAAAAADhBZGRpbmcgY2FjaGUgbGF5ZX - IgJ3Bha2V0by1idWlsZHBhY2tzL25vZGUtZW5naW5lOm5vZGUnCgEAAAAAAAA9QWRkaW5n - IGNhY2hlIGxheWVyICdwYWtldG8tYnVpbGRwYWNrcy9ucG0taW5zdGFsbDpucG0tY2FjaG - UnCgEAAAAAAAA3QWRkaW5nIGNhY2hlIGxheWVyICdidWlsZHBhY2tzaW8vbGlmZWN5Y2xl - OmNhY2hlLnNib20nCg== - headers: - Connection: - - Upgrade - Content-Type: - - application/vnd.docker.multiplexed-stream - Upgrade: - - tcp - status: 101 UPGRADED - code: 101 - duration: "" -- request: - body: | - {"StatusCode":0} - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9/wait?condition=next-exit - method: POST - response: - body: | - {"StatusCode":0} - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:24 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/containers/201c65b8c3c084028eb7d93734e4dea2d7e495deb49bda560fab851b65d705f9?force=1 - method: DELETE - response: - body: "" - headers: - Api-Version: - - "1.51" - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/networks/pack.local-network-6c70787a767a7961626b - method: DELETE - response: - body: "" - headers: - Api-Version: - - "1.51" - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-layers-ahpoxkdnva?force=1 - method: DELETE - response: - body: "" - headers: - Api-Version: - - "1.51" - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 204 No Content - code: 204 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/volumes/pack-app-axbujscgxt?force=1 - method: DELETE - response: - body: "" - headers: - Api-Version: - - "1.51" - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 204 No Content - code: 204 - duration: "" -- request: - body: | - [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78"},{"Deleted":"sha256:6fa48a8b9a5a1210f592468a34ff7ccc05ffd0d487e75b02ed743c5bc8c02fb0"},{"Deleted":"sha256:d21179bd0ee699292815562c586a12f8661b0df61abde0d83a1d4e57513a5c0e"},{"Deleted":"sha256:a6cfb361ac0f15d990b5ca8a1a5fd7842e7362e2a55927172945c1684e7c39e5"},{"Deleted":"sha256:18cde52b91c71ea193763b51cd4b590605e92b080f9b02f4dbb584bbe4eeedd1"}] - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/pack.local/builder/11111111111111111111:latest?force=1&noprune=1 - method: DELETE - response: - body: | - [{"Untagged":"pack.local/builder/11111111111111111111:latest"},{"Deleted":"sha256:47a95ec04ae8b5ff64d33325d99535c60c288856859587f4cd3c5049b3c25a78"},{"Deleted":"sha256:6fa48a8b9a5a1210f592468a34ff7ccc05ffd0d487e75b02ed743c5bc8c02fb0"},{"Deleted":"sha256:d21179bd0ee699292815562c586a12f8661b0df61abde0d83a1d4e57513a5c0e"},{"Deleted":"sha256:a6cfb361ac0f15d990b5ca8a1a5fd7842e7362e2a55927172945c1684e7c39e5"},{"Deleted":"sha256:18cde52b91c71ea193763b51cd4b590605e92b080f9b02f4dbb584bbe4eeedd1"}] - headers: - Api-Version: - - "1.51" - Content-Length: - - "494" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"progress\":\"[=\\u003e - \ ] 512B/22.53kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3072,\"total\":284896},\"progress\":\"[\\u003e - \ ] 3.072kB/284.9kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"progress\":\"[==================================================\\u003e] - \ 27.65kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":299520,\"total\":284896},\"progress\":\"[==================================================\\u003e] - \ 299.5kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":956},\"progress\":\"[==========================\\u003e - \ ] 512B/956B\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":956},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2834616},\"progress\":\"[\\u003e - \ ] 34.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":886272,\"total\":2834616},\"progress\":\"[===============\\u003e - \ ] 886.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836544,\"total\":2834616},\"progress\":\"[================================\\u003e - \ ] 1.837MB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2837504,\"total\":2834616},\"progress\":\"[==================================================\\u003e] - \ 2.838MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":52013819},\"progress\":\"[\\u003e - \ ] 532.5kB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2105344,\"total\":52013819},\"progress\":\"[==\\u003e - \ ] 2.105MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4485359},\"progress\":\"[\\u003e - \ ] 68.61kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3678208,\"total\":52013819},\"progress\":\"[===\\u003e - \ ] 3.678MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":986112,\"total\":4485359},\"progress\":\"[==========\\u003e - \ ] 986.1kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4726784,\"total\":52013819},\"progress\":\"[====\\u003e - \ ] 4.727MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1707008,\"total\":4485359},\"progress\":\"[===================\\u003e - \ ] 1.707MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2493440,\"total\":4485359},\"progress\":\"[===========================\\u003e - \ ] 2.493MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5775360,\"total\":52013819},\"progress\":\"[=====\\u003e - \ ] 5.775MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3279872,\"total\":4485359},\"progress\":\"[====================================\\u003e - \ ] 3.28MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526336,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 526.3kB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3804160,\"total\":4485359},\"progress\":\"[==========================================\\u003e - \ ] 3.804MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6823936,\"total\":52013819},\"progress\":\"[======\\u003e - \ ] 6.824MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4262912,\"total\":4485359},\"progress\":\"[===============================================\\u003e - \ ] 4.263MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7348224,\"total\":52013819},\"progress\":\"[=======\\u003e - \ ] 7.348MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4489728,\"total\":4485359},\"progress\":\"[==================================================\\u003e] - \ 4.49MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1614848,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 1.615MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8921088,\"total\":52013819},\"progress\":\"[========\\u003e - \ ] 8.921MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2728960,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 2.729MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10493952,\"total\":52013819},\"progress\":\"[==========\\u003e - \ ] 10.49MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12066816,\"total\":52013819},\"progress\":\"[===========\\u003e - \ ] 12.07MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3843072,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 3.843MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13115392,\"total\":52013819},\"progress\":\"[============\\u003e - \ ] 13.12MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4957184,\"total\":201299501},\"progress\":\"[=\\u003e - \ ] 4.957MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"progress\":\"[==================\\u003e - \ ] 512B/1.417kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14163968,\"total\":52013819},\"progress\":\"[=============\\u003e - \ ] 14.16MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6628352,\"total\":201299501},\"progress\":\"[=\\u003e - \ ] 6.628MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15212544,\"total\":52013819},\"progress\":\"[==============\\u003e - \ ] 15.21MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8299520,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 8.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16261120,\"total\":52013819},\"progress\":\"[===============\\u003e - \ ] 16.26MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9970688,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 9.971MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17309696,\"total\":52013819},\"progress\":\"[================\\u003e - \ ] 17.31MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11641856,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 11.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18358272,\"total\":52013819},\"progress\":\"[=================\\u003e - \ ] 18.36MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12755968,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 12.76MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19931136,\"total\":52013819},\"progress\":\"[===================\\u003e - \ ] 19.93MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14427136,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 14.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20979712,\"total\":52013819},\"progress\":\"[====================\\u003e - \ ] 20.98MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15541248,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 15.54MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22028288,\"total\":52013819},\"progress\":\"[=====================\\u003e - \ ] 22.03MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23601152,\"total\":52013819},\"progress\":\"[======================\\u003e - \ ] 23.6MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16655360,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 16.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25698304,\"total\":52013819},\"progress\":\"[========================\\u003e - \ ] 25.7MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17769472,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 17.77MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":52013819},\"progress\":\"[==========================\\u003e - \ ] 27.27MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19440640,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 19.44MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29368320,\"total\":52013819},\"progress\":\"[============================\\u003e - \ ] 29.37MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21111808,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 21.11MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30941184,\"total\":52013819},\"progress\":\"[=============================\\u003e - \ ] 30.94MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22225920,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 22.23MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31989760,\"total\":52013819},\"progress\":\"[==============================\\u003e - \ ] 31.99MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23340032,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 23.34MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33562624,\"total\":52013819},\"progress\":\"[================================\\u003e - \ ] 33.56MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35659776,\"total\":52013819},\"progress\":\"[==================================\\u003e - \ ] 35.66MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24454144,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 24.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38281216,\"total\":52013819},\"progress\":\"[====================================\\u003e - \ ] 38.28MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25568256,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 25.57MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39329792,\"total\":52013819},\"progress\":\"[=====================================\\u003e - \ ] 39.33MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26682368,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 26.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31609811},\"progress\":\"[\\u003e - \ ] 316.4kB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28353536,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 28.35MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31609811},\"progress\":\"[==\\u003e - \ ] 1.651MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40378368,\"total\":52013819},\"progress\":\"[======================================\\u003e - \ ] 40.38MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":77871919},\"progress\":\"[\\u003e - \ ] 530.9kB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29467648,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 29.47MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2956800,\"total\":31609811},\"progress\":\"[====\\u003e - \ ] 2.957MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 1.642MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40902656,\"total\":52013819},\"progress\":\"[=======================================\\u003e - \ ] 40.9MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4911616,\"total\":31609811},\"progress\":\"[=======\\u003e - \ ] 4.912MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2199552,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 2.2MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30024704,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 30.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6549504,\"total\":31609811},\"progress\":\"[==========\\u003e - \ ] 6.55MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41426944,\"total\":52013819},\"progress\":\"[=======================================\\u003e - \ ] 41.43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 2.745MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30581760,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 30.58MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7853053,\"total\":31609811},\"progress\":\"[============\\u003e - \ ] 7.853MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31138816,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 31.14MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41951232,\"total\":52013819},\"progress\":\"[========================================\\u003e - \ ] 41.95MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":77871919},\"progress\":\"[==\\u003e - \ ] 3.823MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32252928,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 32.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9192960,\"total\":31609811},\"progress\":\"[==============\\u003e - \ ] 9.193MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":77871919},\"progress\":\"[===\\u003e - \ ] 4.9MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42475520,\"total\":52013819},\"progress\":\"[========================================\\u003e - \ ] 42.48MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32809984,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 32.81MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10185216,\"total\":31609811},\"progress\":\"[================\\u003e - \ ] 10.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5964776,\"total\":77871919},\"progress\":\"[===\\u003e - \ ] 5.965MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42999808,\"total\":52013819},\"progress\":\"[=========================================\\u003e - \ ] 43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10850816,\"total\":31609811},\"progress\":\"[=================\\u003e - \ ] 10.85MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33924096,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 33.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7046152,\"total\":77871919},\"progress\":\"[====\\u003e - \ ] 7.046MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43524096,\"total\":52013819},\"progress\":\"[=========================================\\u003e - \ ] 43.52MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31609811},\"progress\":\"[==================\\u003e - \ ] 11.49MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34481152,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 34.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":77871919},\"progress\":\"[=====\\u003e - \ ] 8.126MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44572672,\"total\":52013819},\"progress\":\"[==========================================\\u003e - \ ] 44.57MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45621248,\"total\":52013819},\"progress\":\"[===========================================\\u003e - \ ] 45.62MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":77871919},\"progress\":\"[======\\u003e - \ ] 9.744MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12151296,\"total\":31609811},\"progress\":\"[===================\\u003e - \ ] 12.15MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35595264,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 35.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36152320,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 36.15MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31609811},\"progress\":\"[===================\\u003e - \ ] 12.47MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10855936,\"total\":77871919},\"progress\":\"[======\\u003e - \ ] 10.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46669824,\"total\":52013819},\"progress\":\"[============================================\\u003e - \ ] 46.67MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":77871919},\"progress\":\"[=======\\u003e - \ ] 11.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12795392,\"total\":31609811},\"progress\":\"[====================\\u003e - \ ] 12.8MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47194112,\"total\":52013819},\"progress\":\"[=============================================\\u003e - \ ] 47.19MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37266432,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 37.27MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13111738,\"total\":31609811},\"progress\":\"[====================\\u003e - \ ] 13.11MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47718400,\"total\":52013819},\"progress\":\"[=============================================\\u003e - \ ] 47.72MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12527104,\"total\":77871919},\"progress\":\"[========\\u003e - \ ] 12.53MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37823488,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 37.82MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14166776,\"total\":77871919},\"progress\":\"[=========\\u003e - \ ] 14.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31609811},\"progress\":\"[=====================\\u003e - \ ] 13.76MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38380544,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 38.38MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48766976,\"total\":52013819},\"progress\":\"[==============================================\\u003e - \ ] 48.77MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15236096,\"total\":77871919},\"progress\":\"[=========\\u003e - \ ] 15.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14394606,\"total\":31609811},\"progress\":\"[======================\\u003e - \ ] 14.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49815552,\"total\":52013819},\"progress\":\"[===============================================\\u003e - \ ] 49.82MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39494656,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 39.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16863232,\"total\":77871919},\"progress\":\"[==========\\u003e - \ ] 16.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15706624,\"total\":31609811},\"progress\":\"[========================\\u003e - \ ] 15.71MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51410944,\"total\":52013819},\"progress\":\"[=================================================\\u003e - ] 51.41MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17931648,\"total\":77871919},\"progress\":\"[===========\\u003e - \ ] 17.93MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40608768,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 40.61MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52411392,\"total\":52013819},\"progress\":\"[==================================================\\u003e] - \ 52.41MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17017344,\"total\":31609811},\"progress\":\"[==========================\\u003e - \ ] 17.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18989056,\"total\":77871919},\"progress\":\"[============\\u003e - \ ] 18.99MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42279936,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 42.28MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18328064,\"total\":31609811},\"progress\":\"[============================\\u003e - \ ] 18.33MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43951104,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 43.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":77871919},\"progress\":\"[============\\u003e - \ ] 20.05MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19303745,\"total\":31609811},\"progress\":\"[==============================\\u003e - \ ] 19.3MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45065216,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 45.07MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21127168,\"total\":77871919},\"progress\":\"[=============\\u003e - \ ] 21.13MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20636160,\"total\":31609811},\"progress\":\"[================================\\u003e - \ ] 20.64MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46179328,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 46.18MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22194448,\"total\":77871919},\"progress\":\"[==============\\u003e - \ ] 22.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21946880,\"total\":31609811},\"progress\":\"[==================================\\u003e - \ ] 21.95MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23264528,\"total\":77871919},\"progress\":\"[==============\\u003e - \ ] 23.26MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47850496,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 47.85MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23257600,\"total\":31609811},\"progress\":\"[====================================\\u003e - \ ] 23.26MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24342528,\"total\":77871919},\"progress\":\"[===============\\u003e - \ ] 24.34MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48964608,\"total\":201299501},\"progress\":\"[============\\u003e - \ ] 48.96MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24580096,\"total\":31609811},\"progress\":\"[======================================\\u003e - \ ] 24.58MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":77871919},\"progress\":\"[================\\u003e - \ ] 25.94MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50635776,\"total\":201299501},\"progress\":\"[============\\u003e - \ ] 50.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25218907,\"total\":31609811},\"progress\":\"[=======================================\\u003e - \ ] 25.22MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27539728,\"total\":77871919},\"progress\":\"[=================\\u003e - \ ] 27.54MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52864000,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 52.86MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31609811},\"progress\":\"[=========================================\\u003e - \ ] 26.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29170688,\"total\":77871919},\"progress\":\"[==================\\u003e - \ ] 29.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53978112,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 53.98MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27482112,\"total\":31609811},\"progress\":\"[===========================================\\u003e - \ ] 27.48MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":77871919},\"progress\":\"[===================\\u003e - \ ] 30.27MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55092224,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 55.09MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28120064,\"total\":31609811},\"progress\":\"[============================================\\u003e - \ ] 28.12MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56206336,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 56.21MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31372800,\"total\":77871919},\"progress\":\"[====================\\u003e - \ ] 31.37MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28753408,\"total\":31609811},\"progress\":\"[=============================================\\u003e - \ ] 28.75MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31916032,\"total\":77871919},\"progress\":\"[====================\\u003e - \ ] 31.92MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57320448,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 57.32MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29069940,\"total\":31609811},\"progress\":\"[=============================================\\u003e - \ ] 29.07MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33000448,\"total\":77871919},\"progress\":\"[=====================\\u003e - \ ] 33MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58434560,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 58.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29386752,\"total\":31609811},\"progress\":\"[==============================================\\u003e - \ ] 29.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59548672,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 59.55MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34114560,\"total\":77871919},\"progress\":\"[=====================\\u003e - \ ] 34.11MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60662784,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 60.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30019810,\"total\":31609811},\"progress\":\"[===============================================\\u003e - \ ] 30.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35174400,\"total\":77871919},\"progress\":\"[======================\\u003e - \ ] 35.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61776896,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 61.78MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":77871919},\"progress\":\"[=======================\\u003e - \ ] 36.29MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30655232,\"total\":31609811},\"progress\":\"[================================================\\u003e - \ ] 30.66MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63448064,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 63.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31986176,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 31.99MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37402624,\"total\":77871919},\"progress\":\"[========================\\u003e - \ ] 37.4MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38516736,\"total\":77871919},\"progress\":\"[========================\\u003e - \ ] 38.52MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33298944,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 33.3MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64562176,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 64.56MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34030592,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 34.03MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39630848,\"total\":77871919},\"progress\":\"[=========================\\u003e - \ ] 39.63MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65676288,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 65.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40187904,\"total\":77871919},\"progress\":\"[=========================\\u003e - \ ] 40.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66790400,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 66.79MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67904512,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 67.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":77871919},\"progress\":\"[==========================\\u003e - \ ] 41.81MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69018624,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 69.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42890240,\"total\":77871919},\"progress\":\"[===========================\\u003e - \ ] 42.89MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70132736,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 70.13MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43962368,\"total\":77871919},\"progress\":\"[============================\\u003e - \ ] 43.96MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71246848,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 71.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45076480,\"total\":77871919},\"progress\":\"[============================\\u003e - \ ] 45.08MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72360960,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 72.36MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46159872,\"total\":77871919},\"progress\":\"[=============================\\u003e - \ ] 46.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72918016,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 72.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47799296,\"total\":77871919},\"progress\":\"[==============================\\u003e - \ ] 47.8MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73475072,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 73.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48878096,\"total\":77871919},\"progress\":\"[===============================\\u003e - \ ] 48.88MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74589184,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 74.59MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49979904,\"total\":77871919},\"progress\":\"[================================\\u003e - \ ] 49.98MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76260352,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 76.26MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51072512,\"total\":77871919},\"progress\":\"[================================\\u003e - \ ] 51.07MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77374464,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 77.37MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52160000,\"total\":77871919},\"progress\":\"[=================================\\u003e - \ ] 52.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78488576,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 78.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53246464,\"total\":77871919},\"progress\":\"[==================================\\u003e - \ ] 53.25MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79602688,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 79.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54357504,\"total\":77871919},\"progress\":\"[==================================\\u003e - \ ] 54.36MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80716800,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 80.72MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":81830912,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 81.83MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55436880,\"total\":77871919},\"progress\":\"[===================================\\u003e - \ ] 55.44MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82945024,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 82.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56500224,\"total\":77871919},\"progress\":\"[====================================\\u003e - \ ] 56.5MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84059136,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 84.06MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57614336,\"total\":77871919},\"progress\":\"[====================================\\u003e - \ ] 57.61MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85173248,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 85.17MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58696192,\"total\":77871919},\"progress\":\"[=====================================\\u003e - \ ] 58.7MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59243008,\"total\":77871919},\"progress\":\"[======================================\\u003e - \ ] 59.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86287360,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 86.29MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87401472,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 87.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60298752,\"total\":77871919},\"progress\":\"[======================================\\u003e - \ ] 60.3MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":88515584,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 88.52MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61412864,\"total\":77871919},\"progress\":\"[=======================================\\u003e - \ ] 61.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89629696,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 89.63MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62511616,\"total\":77871919},\"progress\":\"[========================================\\u003e - \ ] 62.51MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":90743808,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 90.74MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63602688,\"total\":77871919},\"progress\":\"[========================================\\u003e - \ ] 63.6MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":92414976,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 92.41MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64671481,\"total\":77871919},\"progress\":\"[=========================================\\u003e - \ ] 64.67MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93529088,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 93.53MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65720927,\"total\":77871919},\"progress\":\"[==========================================\\u003e - \ ] 65.72MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95200256,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 95.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96314368,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 96.31MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66770432,\"total\":77871919},\"progress\":\"[==========================================\\u003e - \ ] 66.77MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97985536,\"total\":201299501},\"progress\":\"[========================\\u003e - \ ] 97.99MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68375552,\"total\":77871919},\"progress\":\"[===========================================\\u003e - \ ] 68.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99656704,\"total\":201299501},\"progress\":\"[========================\\u003e - \ ] 99.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69450656,\"total\":77871919},\"progress\":\"[============================================\\u003e - \ ] 69.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101327872,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 101.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71087104,\"total\":77871919},\"progress\":\"[=============================================\\u003e - \ ] 71.09MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102999040,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 103MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72154528,\"total\":77871919},\"progress\":\"[==============================================\\u003e - \ ] 72.15MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104113152,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 104.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73776935,\"total\":77871919},\"progress\":\"[===============================================\\u003e - \ ] 73.78MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105227264,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 105.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74826752,\"total\":77871919},\"progress\":\"[================================================\\u003e - \ ] 74.83MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106341376,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 106.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75380736,\"total\":77871919},\"progress\":\"[================================================\\u003e - \ ] 75.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":107455488,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 107.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76453677,\"total\":77871919},\"progress\":\"[=================================================\\u003e - ] 76.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108569600,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 108.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77546496,\"total\":77871919},\"progress\":\"[=================================================\\u003e - ] 77.55MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":110240768,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 110.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78621184,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 78.62MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111354880,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 111.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80227328,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 80.23MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80420352,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 80.42MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":112468992,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 112.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":113583104,\"total\":201299501},\"progress\":\"[============================\\u003e - \ ] 113.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":116368384,\"total\":201299501},\"progress\":\"[============================\\u003e - \ ] 116.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":118039552,\"total\":201299501},\"progress\":\"[=============================\\u003e - \ ] 118MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119710720,\"total\":201299501},\"progress\":\"[=============================\\u003e - \ ] 119.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121938944,\"total\":201299501},\"progress\":\"[==============================\\u003e - \ ] 121.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123610112,\"total\":201299501},\"progress\":\"[==============================\\u003e - \ ] 123.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125279744,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 125.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126923264,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 126.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":128012984,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 128MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130667520,\"total\":201299501},\"progress\":\"[================================\\u003e - \ ] 130.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133822976,\"total\":201299501},\"progress\":\"[=================================\\u003e - \ ] 133.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":136454144,\"total\":201299501},\"progress\":\"[=================================\\u003e - \ ] 136.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139085312,\"total\":201299501},\"progress\":\"[==================================\\u003e - \ ] 139.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141187584,\"total\":201299501},\"progress\":\"[===================================\\u003e - \ ] 141.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":143816704,\"total\":201299501},\"progress\":\"[===================================\\u003e - \ ] 143.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145920512,\"total\":201299501},\"progress\":\"[====================================\\u003e - \ ] 145.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148550656,\"total\":201299501},\"progress\":\"[====================================\\u003e - \ ] 148.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":150127616,\"total\":201299501},\"progress\":\"[=====================================\\u003e - \ ] 150.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":152757760,\"total\":201299501},\"progress\":\"[=====================================\\u003e - \ ] 152.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":155386880,\"total\":201299501},\"progress\":\"[======================================\\u003e - \ ] 155.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":158017024,\"total\":201299501},\"progress\":\"[=======================================\\u003e - \ ] 158MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":160645632,\"total\":201299501},\"progress\":\"[=======================================\\u003e - \ ] 160.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163801088,\"total\":201299501},\"progress\":\"[========================================\\u003e - \ ] 163.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166431232,\"total\":201299501},\"progress\":\"[=========================================\\u003e - \ ] 166.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":169060352,\"total\":201299501},\"progress\":\"[=========================================\\u003e - \ ] 169.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":171690496,\"total\":201299501},\"progress\":\"[==========================================\\u003e - \ ] 171.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":174319616,\"total\":201299501},\"progress\":\"[===========================================\\u003e - \ ] 174.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":176949760,\"total\":201299501},\"progress\":\"[===========================================\\u003e - \ ] 176.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":179579392,\"total\":201299501},\"progress\":\"[============================================\\u003e - \ ] 179.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":182209536,\"total\":201299501},\"progress\":\"[=============================================\\u003e - \ ] 182.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":184838144,\"total\":201299501},\"progress\":\"[=============================================\\u003e - \ ] 184.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187468288,\"total\":201299501},\"progress\":\"[==============================================\\u003e - \ ] 187.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190170112,\"total\":201299501},\"progress\":\"[===============================================\\u003e - \ ] 190.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":192332377,\"total\":201299501},\"progress\":\"[===============================================\\u003e - \ ] 192.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":194442273,\"total\":201299501},\"progress\":\"[================================================\\u003e - \ ] 194.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":196553815,\"total\":201299501},\"progress\":\"[================================================\\u003e - \ ] 196.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":198690073,\"total\":201299501},\"progress\":\"[=================================================\\u003e - ] 198.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200272692,\"total\":201299501},\"progress\":\"[=================================================\\u003e - ] 200.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201910272,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 201.9MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":203509565,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 203.5MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205106796,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 205.1MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205797376,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 205.8MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"latest: - digest: sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3 - size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3\",\"Size\":2832}}\r\n" - form: {} - headers: - Content-Type: - - application/json - X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3licHpsaW1kdXlpIn0= - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp/push?tag=latest - method: POST - response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":22532},\"progress\":\"[=\\u003e - \ ] 512B/22.53kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3072,\"total\":284896},\"progress\":\"[\\u003e - \ ] 3.072kB/284.9kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27648,\"total\":22532},\"progress\":\"[==================================================\\u003e] - \ 27.65kB\",\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":299520,\"total\":284896},\"progress\":\"[==================================================\\u003e] - \ 299.5kB\",\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":956},\"progress\":\"[==========================\\u003e - \ ] 512B/956B\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":956},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":23},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":23},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34304,\"total\":2834616},\"progress\":\"[\\u003e - \ ] 34.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":886272,\"total\":2834616},\"progress\":\"[===============\\u003e - \ ] 886.3kB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1836544,\"total\":2834616},\"progress\":\"[================================\\u003e - \ ] 1.837MB/2.835MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2837504,\"total\":2834616},\"progress\":\"[==================================================\\u003e] - \ 2.838MB\",\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f7580b15775a\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"b02dc65251f7\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"83d85471d9f8\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":532480,\"total\":52013819},\"progress\":\"[\\u003e - \ ] 532.5kB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2105344,\"total\":52013819},\"progress\":\"[==\\u003e - \ ] 2.105MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68608,\"total\":4485359},\"progress\":\"[\\u003e - \ ] 68.61kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3678208,\"total\":52013819},\"progress\":\"[===\\u003e - \ ] 3.678MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":986112,\"total\":4485359},\"progress\":\"[==========\\u003e - \ ] 986.1kB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4726784,\"total\":52013819},\"progress\":\"[====\\u003e - \ ] 4.727MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1707008,\"total\":4485359},\"progress\":\"[===================\\u003e - \ ] 1.707MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2493440,\"total\":4485359},\"progress\":\"[===========================\\u003e - \ ] 2.493MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5775360,\"total\":52013819},\"progress\":\"[=====\\u003e - \ ] 5.775MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3279872,\"total\":4485359},\"progress\":\"[====================================\\u003e - \ ] 3.28MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":526336,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 526.3kB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3804160,\"total\":4485359},\"progress\":\"[==========================================\\u003e - \ ] 3.804MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6823936,\"total\":52013819},\"progress\":\"[======\\u003e - \ ] 6.824MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4262912,\"total\":4485359},\"progress\":\"[===============================================\\u003e - \ ] 4.263MB/4.485MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7348224,\"total\":52013819},\"progress\":\"[=======\\u003e - \ ] 7.348MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4489728,\"total\":4485359},\"progress\":\"[==================================================\\u003e] - \ 4.49MB\",\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1614848,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 1.615MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e553d7c9d019\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8921088,\"total\":52013819},\"progress\":\"[========\\u003e - \ ] 8.921MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2728960,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 2.729MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10493952,\"total\":52013819},\"progress\":\"[==========\\u003e - \ ] 10.49MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"353fd76ab07b\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12066816,\"total\":52013819},\"progress\":\"[===========\\u003e - \ ] 12.07MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3843072,\"total\":201299501},\"progress\":\"[\\u003e - \ ] 3.843MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13115392,\"total\":52013819},\"progress\":\"[============\\u003e - \ ] 13.12MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4957184,\"total\":201299501},\"progress\":\"[=\\u003e - \ ] 4.957MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1417},\"progress\":\"[==================\\u003e - \ ] 512B/1.417kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":1417},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14163968,\"total\":52013819},\"progress\":\"[=============\\u003e - \ ] 14.16MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6628352,\"total\":201299501},\"progress\":\"[=\\u003e - \ ] 6.628MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15212544,\"total\":52013819},\"progress\":\"[==============\\u003e - \ ] 15.21MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":505},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":505},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8299520,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 8.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16261120,\"total\":52013819},\"progress\":\"[===============\\u003e - \ ] 16.26MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9970688,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 9.971MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17309696,\"total\":52013819},\"progress\":\"[================\\u003e - \ ] 17.31MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11641856,\"total\":201299501},\"progress\":\"[==\\u003e - \ ] 11.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18358272,\"total\":52013819},\"progress\":\"[=================\\u003e - \ ] 18.36MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12755968,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 12.76MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19931136,\"total\":52013819},\"progress\":\"[===================\\u003e - \ ] 19.93MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14427136,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 14.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20979712,\"total\":52013819},\"progress\":\"[====================\\u003e - \ ] 20.98MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15541248,\"total\":201299501},\"progress\":\"[===\\u003e - \ ] 15.54MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22028288,\"total\":52013819},\"progress\":\"[=====================\\u003e - \ ] 22.03MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23601152,\"total\":52013819},\"progress\":\"[======================\\u003e - \ ] 23.6MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16655360,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 16.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25698304,\"total\":52013819},\"progress\":\"[========================\\u003e - \ ] 25.7MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17769472,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 17.77MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27271168,\"total\":52013819},\"progress\":\"[==========================\\u003e - \ ] 27.27MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19440640,\"total\":201299501},\"progress\":\"[====\\u003e - \ ] 19.44MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29368320,\"total\":52013819},\"progress\":\"[============================\\u003e - \ ] 29.37MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21111808,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 21.11MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30941184,\"total\":52013819},\"progress\":\"[=============================\\u003e - \ ] 30.94MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"6c963d3b9949\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22225920,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 22.23MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31989760,\"total\":52013819},\"progress\":\"[==============================\\u003e - \ ] 31.99MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23340032,\"total\":201299501},\"progress\":\"[=====\\u003e - \ ] 23.34MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c7c21870a50e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33562624,\"total\":52013819},\"progress\":\"[================================\\u003e - \ ] 33.56MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35659776,\"total\":52013819},\"progress\":\"[==================================\\u003e - \ ] 35.66MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24454144,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 24.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38281216,\"total\":52013819},\"progress\":\"[====================================\\u003e - \ ] 38.28MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25568256,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 25.57MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5c6e39b36b81\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39329792,\"total\":52013819},\"progress\":\"[=====================================\\u003e - \ ] 39.33MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26682368,\"total\":201299501},\"progress\":\"[======\\u003e - \ ] 26.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":316416,\"total\":31609811},\"progress\":\"[\\u003e - \ ] 316.4kB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28353536,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 28.35MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1650688,\"total\":31609811},\"progress\":\"[==\\u003e - \ ] 1.651MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40378368,\"total\":52013819},\"progress\":\"[======================================\\u003e - \ ] 40.38MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":530912,\"total\":77871919},\"progress\":\"[\\u003e - \ ] 530.9kB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29467648,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 29.47MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2956800,\"total\":31609811},\"progress\":\"[====\\u003e - \ ] 2.957MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1642496,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 1.642MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40902656,\"total\":52013819},\"progress\":\"[=======================================\\u003e - \ ] 40.9MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4911616,\"total\":31609811},\"progress\":\"[=======\\u003e - \ ] 4.912MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2199552,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 2.2MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30024704,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 30.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6549504,\"total\":31609811},\"progress\":\"[==========\\u003e - \ ] 6.55MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41426944,\"total\":52013819},\"progress\":\"[=======================================\\u003e - \ ] 41.43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2745216,\"total\":77871919},\"progress\":\"[=\\u003e - \ ] 2.745MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30581760,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 30.58MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7853053,\"total\":31609811},\"progress\":\"[============\\u003e - \ ] 7.853MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31138816,\"total\":201299501},\"progress\":\"[=======\\u003e - \ ] 31.14MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41951232,\"total\":52013819},\"progress\":\"[========================================\\u003e - \ ] 41.95MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3822592,\"total\":77871919},\"progress\":\"[==\\u003e - \ ] 3.823MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32252928,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 32.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9192960,\"total\":31609811},\"progress\":\"[==============\\u003e - \ ] 9.193MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4900352,\"total\":77871919},\"progress\":\"[===\\u003e - \ ] 4.9MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42475520,\"total\":52013819},\"progress\":\"[========================================\\u003e - \ ] 42.48MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32809984,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 32.81MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10185216,\"total\":31609811},\"progress\":\"[================\\u003e - \ ] 10.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5964776,\"total\":77871919},\"progress\":\"[===\\u003e - \ ] 5.965MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42999808,\"total\":52013819},\"progress\":\"[=========================================\\u003e - \ ] 43MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10850816,\"total\":31609811},\"progress\":\"[=================\\u003e - \ ] 10.85MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33924096,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 33.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7046152,\"total\":77871919},\"progress\":\"[====\\u003e - \ ] 7.046MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43524096,\"total\":52013819},\"progress\":\"[=========================================\\u003e - \ ] 43.52MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11486226,\"total\":31609811},\"progress\":\"[==================\\u003e - \ ] 11.49MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34481152,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 34.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8126464,\"total\":77871919},\"progress\":\"[=====\\u003e - \ ] 8.126MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":44572672,\"total\":52013819},\"progress\":\"[==========================================\\u003e - \ ] 44.57MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45621248,\"total\":52013819},\"progress\":\"[===========================================\\u003e - \ ] 45.62MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":9743872,\"total\":77871919},\"progress\":\"[======\\u003e - \ ] 9.744MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12151296,\"total\":31609811},\"progress\":\"[===================\\u003e - \ ] 12.15MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35595264,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 35.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36152320,\"total\":201299501},\"progress\":\"[========\\u003e - \ ] 36.15MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12467712,\"total\":31609811},\"progress\":\"[===================\\u003e - \ ] 12.47MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10855936,\"total\":77871919},\"progress\":\"[======\\u003e - \ ] 10.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46669824,\"total\":52013819},\"progress\":\"[============================================\\u003e - \ ] 46.67MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11412992,\"total\":77871919},\"progress\":\"[=======\\u003e - \ ] 11.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12795392,\"total\":31609811},\"progress\":\"[====================\\u003e - \ ] 12.8MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47194112,\"total\":52013819},\"progress\":\"[=============================================\\u003e - \ ] 47.19MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37266432,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 37.27MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13111738,\"total\":31609811},\"progress\":\"[====================\\u003e - \ ] 13.11MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47718400,\"total\":52013819},\"progress\":\"[=============================================\\u003e - \ ] 47.72MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":12527104,\"total\":77871919},\"progress\":\"[========\\u003e - \ ] 12.53MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37823488,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 37.82MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14166776,\"total\":77871919},\"progress\":\"[=========\\u003e - \ ] 14.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13758464,\"total\":31609811},\"progress\":\"[=====================\\u003e - \ ] 13.76MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38380544,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 38.38MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48766976,\"total\":52013819},\"progress\":\"[==============================================\\u003e - \ ] 48.77MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15236096,\"total\":77871919},\"progress\":\"[=========\\u003e - \ ] 15.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14394606,\"total\":31609811},\"progress\":\"[======================\\u003e - \ ] 14.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49815552,\"total\":52013819},\"progress\":\"[===============================================\\u003e - \ ] 49.82MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39494656,\"total\":201299501},\"progress\":\"[=========\\u003e - \ ] 39.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16863232,\"total\":77871919},\"progress\":\"[==========\\u003e - \ ] 16.86MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":15706624,\"total\":31609811},\"progress\":\"[========================\\u003e - \ ] 15.71MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51410944,\"total\":52013819},\"progress\":\"[=================================================\\u003e - ] 51.41MB/52.01MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17931648,\"total\":77871919},\"progress\":\"[===========\\u003e - \ ] 17.93MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40608768,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 40.61MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52411392,\"total\":52013819},\"progress\":\"[==================================================\\u003e] - \ 52.41MB\",\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17017344,\"total\":31609811},\"progress\":\"[==========================\\u003e - \ ] 17.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18989056,\"total\":77871919},\"progress\":\"[============\\u003e - \ ] 18.99MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42279936,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 42.28MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":18328064,\"total\":31609811},\"progress\":\"[============================\\u003e - \ ] 18.33MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43951104,\"total\":201299501},\"progress\":\"[==========\\u003e - \ ] 43.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20051968,\"total\":77871919},\"progress\":\"[============\\u003e - \ ] 20.05MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19303745,\"total\":31609811},\"progress\":\"[==============================\\u003e - \ ] 19.3MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45065216,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 45.07MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21127168,\"total\":77871919},\"progress\":\"[=============\\u003e - \ ] 21.13MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20636160,\"total\":31609811},\"progress\":\"[================================\\u003e - \ ] 20.64MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46179328,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 46.18MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22194448,\"total\":77871919},\"progress\":\"[==============\\u003e - \ ] 22.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21946880,\"total\":31609811},\"progress\":\"[==================================\\u003e - \ ] 21.95MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23264528,\"total\":77871919},\"progress\":\"[==============\\u003e - \ ] 23.26MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47850496,\"total\":201299501},\"progress\":\"[===========\\u003e - \ ] 47.85MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":23257600,\"total\":31609811},\"progress\":\"[====================================\\u003e - \ ] 23.26MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24342528,\"total\":77871919},\"progress\":\"[===============\\u003e - \ ] 24.34MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48964608,\"total\":201299501},\"progress\":\"[============\\u003e - \ ] 48.96MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24580096,\"total\":31609811},\"progress\":\"[======================================\\u003e - \ ] 24.58MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25938944,\"total\":77871919},\"progress\":\"[================\\u003e - \ ] 25.94MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":50635776,\"total\":201299501},\"progress\":\"[============\\u003e - \ ] 50.64MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":25218907,\"total\":31609811},\"progress\":\"[=======================================\\u003e - \ ] 25.22MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27539728,\"total\":77871919},\"progress\":\"[=================\\u003e - \ ] 27.54MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52864000,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 52.86MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26187269,\"total\":31609811},\"progress\":\"[=========================================\\u003e - \ ] 26.19MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29170688,\"total\":77871919},\"progress\":\"[==================\\u003e - \ ] 29.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53978112,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 53.98MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27482112,\"total\":31609811},\"progress\":\"[===========================================\\u003e - \ ] 27.48MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30266368,\"total\":77871919},\"progress\":\"[===================\\u003e - \ ] 30.27MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55092224,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 55.09MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28120064,\"total\":31609811},\"progress\":\"[============================================\\u003e - \ ] 28.12MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56206336,\"total\":201299501},\"progress\":\"[=============\\u003e - \ ] 56.21MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31372800,\"total\":77871919},\"progress\":\"[====================\\u003e - \ ] 31.37MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":28753408,\"total\":31609811},\"progress\":\"[=============================================\\u003e - \ ] 28.75MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31916032,\"total\":77871919},\"progress\":\"[====================\\u003e - \ ] 31.92MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57320448,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 57.32MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29069940,\"total\":31609811},\"progress\":\"[=============================================\\u003e - \ ] 29.07MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33000448,\"total\":77871919},\"progress\":\"[=====================\\u003e - \ ] 33MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58434560,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 58.43MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29386752,\"total\":31609811},\"progress\":\"[==============================================\\u003e - \ ] 29.39MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59548672,\"total\":201299501},\"progress\":\"[==============\\u003e - \ ] 59.55MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34114560,\"total\":77871919},\"progress\":\"[=====================\\u003e - \ ] 34.11MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60662784,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 60.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30019810,\"total\":31609811},\"progress\":\"[===============================================\\u003e - \ ] 30.02MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35174400,\"total\":77871919},\"progress\":\"[======================\\u003e - \ ] 35.17MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61776896,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 61.78MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":36288512,\"total\":77871919},\"progress\":\"[=======================\\u003e - \ ] 36.29MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30655232,\"total\":31609811},\"progress\":\"[================================================\\u003e - \ ] 30.66MB/31.61MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63448064,\"total\":201299501},\"progress\":\"[===============\\u003e - \ ] 63.45MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":31986176,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 31.99MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37402624,\"total\":77871919},\"progress\":\"[========================\\u003e - \ ] 37.4MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":38516736,\"total\":77871919},\"progress\":\"[========================\\u003e - \ ] 38.52MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":33298944,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 33.3MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64562176,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 64.56MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34030592,\"total\":31609811},\"progress\":\"[==================================================\\u003e] - \ 34.03MB\",\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39630848,\"total\":77871919},\"progress\":\"[=========================\\u003e - \ ] 39.63MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65676288,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 65.68MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":40187904,\"total\":77871919},\"progress\":\"[=========================\\u003e - \ ] 40.19MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66790400,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 66.79MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"f103b1c057a1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":67904512,\"total\":201299501},\"progress\":\"[================\\u003e - \ ] 67.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41807408,\"total\":77871919},\"progress\":\"[==========================\\u003e - \ ] 41.81MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69018624,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 69.02MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":42890240,\"total\":77871919},\"progress\":\"[===========================\\u003e - \ ] 42.89MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":70132736,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 70.13MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":43962368,\"total\":77871919},\"progress\":\"[============================\\u003e - \ ] 43.96MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71246848,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 71.25MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":45076480,\"total\":77871919},\"progress\":\"[============================\\u003e - \ ] 45.08MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72360960,\"total\":201299501},\"progress\":\"[=================\\u003e - \ ] 72.36MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":46159872,\"total\":77871919},\"progress\":\"[=============================\\u003e - \ ] 46.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72918016,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 72.92MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":47799296,\"total\":77871919},\"progress\":\"[==============================\\u003e - \ ] 47.8MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73475072,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 73.48MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":48878096,\"total\":77871919},\"progress\":\"[===============================\\u003e - \ ] 48.88MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74589184,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 74.59MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":49979904,\"total\":77871919},\"progress\":\"[================================\\u003e - \ ] 49.98MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76260352,\"total\":201299501},\"progress\":\"[==================\\u003e - \ ] 76.26MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":51072512,\"total\":77871919},\"progress\":\"[================================\\u003e - \ ] 51.07MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77374464,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 77.37MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":52160000,\"total\":77871919},\"progress\":\"[=================================\\u003e - \ ] 52.16MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78488576,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 78.49MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"c11ee8f96dca\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":53246464,\"total\":77871919},\"progress\":\"[==================================\\u003e - \ ] 53.25MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":79602688,\"total\":201299501},\"progress\":\"[===================\\u003e - \ ] 79.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":54357504,\"total\":77871919},\"progress\":\"[==================================\\u003e - \ ] 54.36MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80716800,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 80.72MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":81830912,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 81.83MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":55436880,\"total\":77871919},\"progress\":\"[===================================\\u003e - \ ] 55.44MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":82945024,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 82.95MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":56500224,\"total\":77871919},\"progress\":\"[====================================\\u003e - \ ] 56.5MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":84059136,\"total\":201299501},\"progress\":\"[====================\\u003e - \ ] 84.06MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":57614336,\"total\":77871919},\"progress\":\"[====================================\\u003e - \ ] 57.61MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":85173248,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 85.17MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":58696192,\"total\":77871919},\"progress\":\"[=====================================\\u003e - \ ] 58.7MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":59243008,\"total\":77871919},\"progress\":\"[======================================\\u003e - \ ] 59.24MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":86287360,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 86.29MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":87401472,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 87.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":60298752,\"total\":77871919},\"progress\":\"[======================================\\u003e - \ ] 60.3MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":88515584,\"total\":201299501},\"progress\":\"[=====================\\u003e - \ ] 88.52MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":61412864,\"total\":77871919},\"progress\":\"[=======================================\\u003e - \ ] 61.41MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":89629696,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 89.63MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":62511616,\"total\":77871919},\"progress\":\"[========================================\\u003e - \ ] 62.51MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":90743808,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 90.74MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":63602688,\"total\":77871919},\"progress\":\"[========================================\\u003e - \ ] 63.6MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":92414976,\"total\":201299501},\"progress\":\"[======================\\u003e - \ ] 92.41MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":64671481,\"total\":77871919},\"progress\":\"[=========================================\\u003e - \ ] 64.67MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":93529088,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 93.53MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":65720927,\"total\":77871919},\"progress\":\"[==========================================\\u003e - \ ] 65.72MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":95200256,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 95.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":96314368,\"total\":201299501},\"progress\":\"[=======================\\u003e - \ ] 96.31MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":66770432,\"total\":77871919},\"progress\":\"[==========================================\\u003e - \ ] 66.77MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":97985536,\"total\":201299501},\"progress\":\"[========================\\u003e - \ ] 97.99MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":68375552,\"total\":77871919},\"progress\":\"[===========================================\\u003e - \ ] 68.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99656704,\"total\":201299501},\"progress\":\"[========================\\u003e - \ ] 99.66MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":69450656,\"total\":77871919},\"progress\":\"[============================================\\u003e - \ ] 69.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101327872,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 101.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71087104,\"total\":77871919},\"progress\":\"[=============================================\\u003e - \ ] 71.09MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":102999040,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 103MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":72154528,\"total\":77871919},\"progress\":\"[==============================================\\u003e - \ ] 72.15MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":104113152,\"total\":201299501},\"progress\":\"[=========================\\u003e - \ ] 104.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":73776935,\"total\":77871919},\"progress\":\"[===============================================\\u003e - \ ] 73.78MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":105227264,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 105.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":74826752,\"total\":77871919},\"progress\":\"[================================================\\u003e - \ ] 74.83MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":106341376,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 106.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":75380736,\"total\":77871919},\"progress\":\"[================================================\\u003e - \ ] 75.38MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":107455488,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 107.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":76453677,\"total\":77871919},\"progress\":\"[=================================================\\u003e - ] 76.45MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":108569600,\"total\":201299501},\"progress\":\"[==========================\\u003e - \ ] 108.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":77546496,\"total\":77871919},\"progress\":\"[=================================================\\u003e - ] 77.55MB/77.87MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":110240768,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 110.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":78621184,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 78.62MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":111354880,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 111.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80227328,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 80.23MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":80420352,\"total\":77871919},\"progress\":\"[==================================================\\u003e] - \ 80.42MB\",\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":112468992,\"total\":201299501},\"progress\":\"[===========================\\u003e - \ ] 112.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":113583104,\"total\":201299501},\"progress\":\"[============================\\u003e - \ ] 113.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":116368384,\"total\":201299501},\"progress\":\"[============================\\u003e - \ ] 116.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":118039552,\"total\":201299501},\"progress\":\"[=============================\\u003e - \ ] 118MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":119710720,\"total\":201299501},\"progress\":\"[=============================\\u003e - \ ] 119.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":121938944,\"total\":201299501},\"progress\":\"[==============================\\u003e - \ ] 121.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":123610112,\"total\":201299501},\"progress\":\"[==============================\\u003e - \ ] 123.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":125279744,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 125.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":126923264,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 126.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":128012984,\"total\":201299501},\"progress\":\"[===============================\\u003e - \ ] 128MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":130667520,\"total\":201299501},\"progress\":\"[================================\\u003e - \ ] 130.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":133822976,\"total\":201299501},\"progress\":\"[=================================\\u003e - \ ] 133.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":136454144,\"total\":201299501},\"progress\":\"[=================================\\u003e - \ ] 136.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":139085312,\"total\":201299501},\"progress\":\"[==================================\\u003e - \ ] 139.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":141187584,\"total\":201299501},\"progress\":\"[===================================\\u003e - \ ] 141.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":143816704,\"total\":201299501},\"progress\":\"[===================================\\u003e - \ ] 143.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":145920512,\"total\":201299501},\"progress\":\"[====================================\\u003e - \ ] 145.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":148550656,\"total\":201299501},\"progress\":\"[====================================\\u003e - \ ] 148.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":150127616,\"total\":201299501},\"progress\":\"[=====================================\\u003e - \ ] 150.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":152757760,\"total\":201299501},\"progress\":\"[=====================================\\u003e - \ ] 152.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":155386880,\"total\":201299501},\"progress\":\"[======================================\\u003e - \ ] 155.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":158017024,\"total\":201299501},\"progress\":\"[=======================================\\u003e - \ ] 158MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":160645632,\"total\":201299501},\"progress\":\"[=======================================\\u003e - \ ] 160.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"73974f74b436\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":163801088,\"total\":201299501},\"progress\":\"[========================================\\u003e - \ ] 163.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":166431232,\"total\":201299501},\"progress\":\"[=========================================\\u003e - \ ] 166.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":169060352,\"total\":201299501},\"progress\":\"[=========================================\\u003e - \ ] 169.1MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":171690496,\"total\":201299501},\"progress\":\"[==========================================\\u003e - \ ] 171.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":174319616,\"total\":201299501},\"progress\":\"[===========================================\\u003e - \ ] 174.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":176949760,\"total\":201299501},\"progress\":\"[===========================================\\u003e - \ ] 176.9MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":179579392,\"total\":201299501},\"progress\":\"[============================================\\u003e - \ ] 179.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":182209536,\"total\":201299501},\"progress\":\"[=============================================\\u003e - \ ] 182.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":184838144,\"total\":201299501},\"progress\":\"[=============================================\\u003e - \ ] 184.8MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":187468288,\"total\":201299501},\"progress\":\"[==============================================\\u003e - \ ] 187.5MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":190170112,\"total\":201299501},\"progress\":\"[===============================================\\u003e - \ ] 190.2MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":192332377,\"total\":201299501},\"progress\":\"[===============================================\\u003e - \ ] 192.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":194442273,\"total\":201299501},\"progress\":\"[================================================\\u003e - \ ] 194.4MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":196553815,\"total\":201299501},\"progress\":\"[================================================\\u003e - \ ] 196.6MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":198690073,\"total\":201299501},\"progress\":\"[=================================================\\u003e - ] 198.7MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":200272692,\"total\":201299501},\"progress\":\"[=================================================\\u003e - ] 200.3MB/201.3MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":201910272,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 201.9MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":203509565,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 203.5MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205106796,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 205.1MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":205797376,\"total\":201299501},\"progress\":\"[==================================================\\u003e] - \ 205.8MB\",\"id\":\"4c2549957338\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"4c2549957338\"}\r\n{\"status\":\"latest: - digest: sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3 - size: 2832\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:66db3fd9a612101f1d73f0c331efffaadb5608ae6621145b2eb1a814a156b6e3\",\"Size\":2832}}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:30:58 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"containers":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-bp&namespace_id=af4f8dde-1587-4cff-86d3-65f068b2d378&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"containers":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6377b41e-34bb-49fe-b27c-89a0e6d14385 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762152733Z", "updated_at":"2025-12-15T13:31:27.762152733Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762152733Z", "updated_at":"2025-12-15T13:31:27.762152733Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "996" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61fc990f-21be-4667-a657-9e62e7777195 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487279Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: PATCH - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487279Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "993" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03c708fe-2177-4f41-ab5b-66945f009739 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.056487Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01e40cd9-138d-496c-a890-5fc869554f13 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309738811Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6/deploy - method: POST - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309738811Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "993" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af5842d9-9562-477c-8133-9753f29cb08c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309739Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.309739Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b4cc5646-9984-4c6b-aab4-8d59e7b08cf5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c5ae297-6051-4127-987b-db78a9c327c0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:31:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c1ab15f-6125-4434-84b5-f0b67946eb05 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:32:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ab8f7d4-5b79-42f7-b88a-0360751f2e07 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:32:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76690a20-b9d2-470e-93fa-67aa2718244e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:32:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - afd69298-463f-4a9d-909d-b1d776b9b4d5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:32:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bbed5b17-2598-49a1-9502-44bd986d1b3a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:33:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a2ea8e5-d2d4-4084-b2f5-191d9f0c0157 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:33:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 73d9a3c2-34e7-4d64-b9a8-4639fffeca7d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:33:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf57463a-b14e-48b5-9773-0c6b2d981bd5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:33:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc817e73-d2cb-4965-929d-de2c9d59ff12 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:34:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17d17b61-2ca2-401e-a46f-d7dc7041c19d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:34:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2cd32008-3826-4209-958b-e824e3c3c655 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:34:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a2616da-4d25-494d-89ff-58bf609df439 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:34:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7824f372-79f7-4564-8f3e-1c14569a5368 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:35:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d2c81d6c-3b66-4319-ab59-1c7b51b10557 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:35:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7d64134-001e-493f-a947-ba18e8d91309 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:35:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8af0ad0-846e-4e98-acb3-ea64c2f92c01 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:35:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f51995af-0cc5-4c56-b856-580a7a094129 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:36:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fc3ab576-c530-4ec2-a47a-d2c74979a38d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:36:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f9d43b4-0889-4798-9b88-fafc59d71a5b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:36:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd0fe7ea-cb7f-4cf0-8545-67fb8703b28f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:36:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e65bd9c8-19c5-441f-ae7c-99bc8481dc0a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:37:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7bcb66ac-3bcc-4135-8d66-53d371e86260 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:37:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8c34c03-981d-44ef-8ed0-15417fd8e8e8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:37:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cac8d720-1eb4-47ba-b555-46d075e2927d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:38:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b30d8a4-fec0-4c03-b945-42e12878e664 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:38:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 482be454-d3f4-4853-af68-d4443e892a66 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:38:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fa9e1b22-52df-4ac2-a3aa-2d52cdf740f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:38:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e2e64b8-b868-4004-a9fa-60217c295cdb - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:39:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d4032c0-86d6-444c-b2f0-fa0ecc9a834c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:39:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a80df82f-9fa3-44c9-9cb0-d2b3848755d2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:39:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f32c438c-8727-482d-a067-be3e2307a828 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:39:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba634782-2917-4bc2-81d1-198b26d7f564 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:40:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39295983-dd00-454c-a2da-1a906fc23307 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:40:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9af0d161-f341-4275-80de-9cef630a988c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:40:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07e56ae3-2959-4be9-a30e-28a79865dda2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13acd71c-5b09-4b82-a5e6-1126ae58b272 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ce61156-43de-465c-b721-22b278db370a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b37cd7f9-6bdd-491e-a3ac-d097029201ca - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:31:28.582782Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "990" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d41610e8-2c3e-4aad-a9b5-3e614adaf4c3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Container failed with: 2025/12/15 13:37:21 failed to open \"package-lock.json\": - open /workspace/package-lock.json: permission denied\n\u001b[31;1mERROR: \u001b[0mfailed - to launch: exec.d: failed to execute exec.d file at path ''/layers/paketo-buildpacks_npm-install/launch-modules/exec.d/0-setup-symlinks'': - exit status 1\n.", "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:41:35.547488Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/500da0db-72ac-4df4-bd83-531a29c7d1c6 - method: GET - response: - body: '{"id":"500da0db-72ac-4df4-bd83-531a29c7d1c6", "name":"cli-t-ctnr-deploy-bp", - "namespace_id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Container failed with: 2025/12/15 13:37:21 failed to open \"package-lock.json\": - open /workspace/package-lock.json: permission denied\n\u001b[31;1mERROR: \u001b[0mfailed - to launch: exec.d: failed to execute exec.d file at path ''/layers/paketo-buildpacks_npm-install/launch-modules/exec.d/0-setup-symlinks'': - exit status 1\n.", "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi/cli-t-ctnr-deploy-bp:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":3000, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:31:27.762153Z", "updated_at":"2025-12-15T13:41:35.547488Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1309" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b71547dc-7c53-448f-b2d4-570dba393829 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:30:08.203698Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - headers: - Content-Length: - - "634" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3081c0ce-fdfa-4ca6-aa0f-a4ab42c4ce55 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861444Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: DELETE - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861444Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "606" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8bdb582-5391-4ca8-99f7-0d99827e68fd - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: GET - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:41:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2147e73-0466-412c-b25d-679c3a60f693 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: GET - response: - body: '{"id":"af4f8dde-1587-4cff-86d3-65f068b2d378", "name":"cli-t-ctnr-deploy-bp", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"8b9103dd-bc71-4fc6-b0c5-90a23e854905", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploybpzlimduyi", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:30:07.132877Z", - "updated_at":"2025-12-15T13:41:46.468861Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:42:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8d512d85-0558-4af7-8e50-d84e1cb7b0b8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"message":"Namespace was not found"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/af4f8dde-1587-4cff-86d3-65f068b2d378 - method: GET - response: - body: '{"message":"Namespace was not found"}' - headers: - Content-Length: - - "37" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:42:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a46be2f-ef6c-444f-ac4f-ad9caeb432f0 - status: 404 Not Found - code: 404 - duration: "" -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-bp&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:42:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ad67c66-26ce-466d-8eb0-4579d0f00e60 - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden deleted file mode 100644 index 50b37488c7..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-buildpack.golden +++ /dev/null @@ -1,6 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud - -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploybpzlimduyi-cli-t-ctnr-deploy-bp.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml deleted file mode 100644 index 2c3f63ce3a..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.cassette.yaml +++ /dev/null @@ -1,1209 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cb095df3-a61b-404d-9c3d-f45c1fd2b59c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:25:25.632398683Z", "updated_at":"2025-12-15T13:25:25.632398683Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:25:25.632398683Z", "updated_at":"2025-12-15T13:25:25.632398683Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9c92c00-c80e-404a-8b0c-ede08126874b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", "updated_at":"2025-12-15T13:25:25.632399Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: GET - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", "updated_at":"2025-12-15T13:25:25.632399Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "514" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 110a3496-e117-454f-94c9-4c187cdbd0bb - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: GET - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "598" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d21bf8c1-0c53-47bf-a029-1b7dbe8ee230 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: {} - url: http://%2Fvar%2Frun%2Fdocker.sock/_ping - method: HEAD - response: - body: "" - headers: - Api-Version: - - "1.51" - Builder-Version: - - "2" - Cache-Control: - - no-cache, no-store, must-revalidate - Content-Length: - - "0" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Mon, 15 Dec 2025 13:25:40 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Pragma: - - no-cache - Server: - - Docker/28.5.1 (linux) - Swarm: - - inactive - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"status\":\"Pulling - from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19166,\"total\":1856020},\"progress\":\"[\\u003e - \ ] 19.17kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39701,\"total\":3859315},\"progress\":\"[\\u003e - \ ] 39.7kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1839104,\"total\":1856020},\"progress\":\"[=================================================\\u003e - ] 1.839MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1265344,\"total\":3859315},\"progress\":\"[================\\u003e - \ ] 1.265MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3083968,\"total\":3859315},\"progress\":\"[=======================================\\u003e - \ ] 3.084MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3859315},\"progress\":\"[\\u003e - \ ] 65.54kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":3859315},\"progress\":\"[==================\\u003e - \ ] 1.442MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":3859315},\"progress\":\"[=============================================\\u003e - \ ] 3.473MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] - \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] - \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1856020},\"progress\":\"[\\u003e - \ ] 32.77kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":1856020},\"progress\":\"[===============================================\\u003e - \ ] 1.769MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] - \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] - \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1208},\"progress\":\"[=======================================\\u003e - \ ] 953B/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1397},\"progress\":\"[==================================\\u003e - \ ] 953B/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172963,\"total\":17261649},\"progress\":\"[\\u003e - \ ] 173kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3047424,\"total\":17261649},\"progress\":\"[========\\u003e - \ ] 3.047MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6832128,\"total\":17261649},\"progress\":\"[===================\\u003e - \ ] 6.832MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10436608,\"total\":17261649},\"progress\":\"[==============================\\u003e - \ ] 10.44MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13672448,\"total\":17261649},\"progress\":\"[=======================================\\u003e - \ ] 13.67MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":17261649},\"progress\":\"[\\u003e - \ ] 196.6kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":17261649},\"progress\":\"[======\\u003e - \ ] 2.163MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":17261649},\"progress\":\"[==========\\u003e - \ ] 3.736MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":17261649},\"progress\":\"[=================\\u003e - \ ] 5.898MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":17261649},\"progress\":\"[======================\\u003e - \ ] 7.864MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":17261649},\"progress\":\"[============================\\u003e - \ ] 9.83MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":17261649},\"progress\":\"[==================================\\u003e - \ ] 11.8MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13565952,\"total\":17261649},\"progress\":\"[=======================================\\u003e - \ ] 13.57MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15532032,\"total\":17261649},\"progress\":\"[============================================\\u003e - \ ] 15.53MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17104896,\"total\":17261649},\"progress\":\"[=================================================\\u003e - ] 17.1MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17261649,\"total\":17261649},\"progress\":\"[==================================================\\u003e] - \ 17.26MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Digest: - sha256:052b75ab72f690f33debaa51c7e08d9b969a0447a133eb2b99cc905d9188cb2b\"}\r\n{\"status\":\"Status: - Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step - 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 6969a3e0493c\\n\"}\r\n{\"stream\":\"(1/4) Installing readline - (8.3.1-r0)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash (5.3.3-r1)\\n\"}\r\n{\"stream\":\" - \ Executing bash-5.3.3-r1.post-install\\n\"}\r\n{\"stream\":\"(3/4) Installing - git (2.52.0-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template (2.52.0-r0)\\n\"}\r\n{\"stream\":\"Executing - busybox-1.37.0-r29.trigger\\n\"}\r\n{\"stream\":\"OK: 58 MiB in 75 packages\\n\"}\r\n{\"stream\":\" - ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html - /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in c14419dc0364\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully - built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" - form: {} - headers: - Content-Type: - - application/x-tar - X-Registry-Config: - - bnVsbA== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/build?dockerfile=Dockerfile&rm=0&t=rg.fr-par.scw.cloud%2Ffuncscwclitctnrdeploysnwevqmkl%2Fcli-t-ctnr-deploy-s%3Alatest - method: POST - response: - body: "{\"stream\":\"Step 1/4 : FROM nginx:alpine\"}\r\n{\"stream\":\"\\n\"}\r\n{\"status\":\"Pulling - from library/nginx\",\"id\":\"alpine\"}\r\n{\"status\":\"Pulling fs layer\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pulling - fs layer\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19166,\"total\":1856020},\"progress\":\"[\\u003e - \ ] 19.17kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39701,\"total\":3859315},\"progress\":\"[\\u003e - \ ] 39.7kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1839104,\"total\":1856020},\"progress\":\"[=================================================\\u003e - ] 1.839MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1265344,\"total\":3859315},\"progress\":\"[================\\u003e - \ ] 1.265MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3083968,\"total\":3859315},\"progress\":\"[=======================================\\u003e - \ ] 3.084MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":3859315},\"progress\":\"[\\u003e - \ ] 65.54kB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":3859315},\"progress\":\"[==================\\u003e - \ ] 1.442MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":3859315},\"progress\":\"[=============================================\\u003e - \ ] 3.473MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] - \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3859315,\"total\":3859315},\"progress\":\"[==================================================\\u003e] - \ 3.859MB/3.859MB\",\"id\":\"014e56e61396\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"014e56e61396\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":1856020},\"progress\":\"[\\u003e - \ ] 32.77kB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":1856020},\"progress\":\"[===============================================\\u003e - \ ] 1.769MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] - \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1856020,\"total\":1856020},\"progress\":\"[==================================================\\u003e] - \ 1.856MB/1.856MB\",\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1208},\"progress\":\"[=======================================\\u003e - \ ] 953B/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull - complete\",\"progressDetail\":{},\"id\":\"dfad290a5c25\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":629,\"total\":629},\"progress\":\"[==================================================\\u003e] - \ 629B/629B\",\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5d2cc344426d\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":954,\"total\":954},\"progress\":\"[==================================================\\u003e] - \ 954B/954B\",\"id\":\"abdece946203\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"abdece946203\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":403,\"total\":403},\"progress\":\"[==================================================\\u003e] - \ 403B/403B\",\"id\":\"51c30493937c\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"51c30493937c\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1208,\"total\":1208},\"progress\":\"[==================================================\\u003e] - \ 1.208kB/1.208kB\",\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"ad5b65da02cf\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":953,\"total\":1397},\"progress\":\"[==================================\\u003e - \ ] 953B/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Verifying Checksum\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1397,\"total\":1397},\"progress\":\"[==================================================\\u003e] - \ 1.397kB/1.397kB\",\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"fc13532503d7\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172963,\"total\":17261649},\"progress\":\"[\\u003e - \ ] 173kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3047424,\"total\":17261649},\"progress\":\"[========\\u003e - \ ] 3.047MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6832128,\"total\":17261649},\"progress\":\"[===================\\u003e - \ ] 6.832MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10436608,\"total\":17261649},\"progress\":\"[==============================\\u003e - \ ] 10.44MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13672448,\"total\":17261649},\"progress\":\"[=======================================\\u003e - \ ] 13.67MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Download - complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":17261649},\"progress\":\"[\\u003e - \ ] 196.6kB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":17261649},\"progress\":\"[======\\u003e - \ ] 2.163MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":17261649},\"progress\":\"[==========\\u003e - \ ] 3.736MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":17261649},\"progress\":\"[=================\\u003e - \ ] 5.898MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":17261649},\"progress\":\"[======================\\u003e - \ ] 7.864MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":17261649},\"progress\":\"[============================\\u003e - \ ] 9.83MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":17261649},\"progress\":\"[==================================\\u003e - \ ] 11.8MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13565952,\"total\":17261649},\"progress\":\"[=======================================\\u003e - \ ] 13.57MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15532032,\"total\":17261649},\"progress\":\"[============================================\\u003e - \ ] 15.53MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17104896,\"total\":17261649},\"progress\":\"[=================================================\\u003e - ] 17.1MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17261649,\"total\":17261649},\"progress\":\"[==================================================\\u003e] - \ 17.26MB/17.26MB\",\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"136bc6976c20\"}\r\n{\"status\":\"Digest: - sha256:052b75ab72f690f33debaa51c7e08d9b969a0447a133eb2b99cc905d9188cb2b\"}\r\n{\"status\":\"Status: - Downloaded newer image for nginx:alpine\"}\r\n{\"stream\":\" ---\\u003e a236f84b9d5d\\n\"}\r\n{\"stream\":\"Step - 2/4 : RUN apk add --no-cache curl git bash\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in 6969a3e0493c\\n\"}\r\n{\"stream\":\"(1/4) Installing readline - (8.3.1-r0)\\n\"}\r\n{\"stream\":\"(2/4) Installing bash (5.3.3-r1)\\n\"}\r\n{\"stream\":\" - \ Executing bash-5.3.3-r1.post-install\\n\"}\r\n{\"stream\":\"(3/4) Installing - git (2.52.0-r0)\\n\"}\r\n{\"stream\":\"(4/4) Installing git-init-template (2.52.0-r0)\\n\"}\r\n{\"stream\":\"Executing - busybox-1.37.0-r29.trigger\\n\"}\r\n{\"stream\":\"OK: 58 MiB in 75 packages\\n\"}\r\n{\"stream\":\" - ---\\u003e 2a152b29efa2\\n\"}\r\n{\"stream\":\"Step 3/4 : COPY ./index.html - /usr/share/nginx/html/index.html\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e ad9fa50aba34\\n\"}\r\n{\"stream\":\"Step 4/4 : EXPOSE 80\"}\r\n{\"stream\":\"\\n\"}\r\n{\"stream\":\" - ---\\u003e Running in c14419dc0364\\n\"}\r\n{\"stream\":\" ---\\u003e 135dd8fddaa1\\n\"}\r\n{\"aux\":{\"ID\":\"sha256:135dd8fddaa1576848ef1a3fa1f7028f60e5c0c19dbc7c7fd10b6224fafc2979\"}}\r\n{\"stream\":\"Successfully - built 135dd8fddaa1\\n\"}\r\n{\"stream\":\"Successfully tagged rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest\\n\"}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:40 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e - \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] - \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e - \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e - \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e - \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4641792,\"total\":41047172},\"progress\":\"[=====\\u003e - \ ] 4.642MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5908480,\"total\":41047172},\"progress\":\"[=======\\u003e - \ ] 5.908MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7612416,\"total\":41047172},\"progress\":\"[=========\\u003e - \ ] 7.612MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10168320,\"total\":41047172},\"progress\":\"[============\\u003e - \ ] 10.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11872256,\"total\":41047172},\"progress\":\"[==============\\u003e - \ ] 11.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13150208,\"total\":41047172},\"progress\":\"[================\\u003e - \ ] 13.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e - \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14445056,\"total\":41047172},\"progress\":\"[=================\\u003e - \ ] 14.45MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1289728,\"total\":8669818},\"progress\":\"[=======\\u003e - \ ] 1.29MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16176128,\"total\":41047172},\"progress\":\"[===================\\u003e - \ ] 16.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2469376,\"total\":8669818},\"progress\":\"[==============\\u003e - \ ] 2.469MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3845632,\"total\":8669818},\"progress\":\"[======================\\u003e - \ ] 3.846MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17865728,\"total\":41047172},\"progress\":\"[=====================\\u003e - \ ] 17.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e - \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] - \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5390848,\"total\":8669818},\"progress\":\"[===============================\\u003e - \ ] 5.391MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19154944,\"total\":41047172},\"progress\":\"[=======================\\u003e - \ ] 19.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6769664,\"total\":8669818},\"progress\":\"[=======================================\\u003e - \ ] 6.77MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20427264,\"total\":41047172},\"progress\":\"[========================\\u003e - \ ] 20.43MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8179712,\"total\":8669818},\"progress\":\"[===============================================\\u003e - \ ] 8.18MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21677568,\"total\":41047172},\"progress\":\"[==========================\\u003e - \ ] 21.68MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] - \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22969856,\"total\":41047172},\"progress\":\"[===========================\\u003e - \ ] 22.97MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24673792,\"total\":41047172},\"progress\":\"[==============================\\u003e - \ ] 24.67MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26372096,\"total\":41047172},\"progress\":\"[================================\\u003e - \ ] 26.37MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27639808,\"total\":41047172},\"progress\":\"[=================================\\u003e - \ ] 27.64MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29329408,\"total\":41047172},\"progress\":\"[===================================\\u003e - \ ] 29.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30609920,\"total\":41047172},\"progress\":\"[=====================================\\u003e - \ ] 30.61MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32332800,\"total\":41047172},\"progress\":\"[=======================================\\u003e - \ ] 32.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34044928,\"total\":41047172},\"progress\":\"[=========================================\\u003e - \ ] 34.04MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e - \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e - \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e - \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37439488,\"total\":41047172},\"progress\":\"[=============================================\\u003e - \ ] 37.44MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39153664,\"total\":41047172},\"progress\":\"[===============================================\\u003e - \ ] 39.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41285556,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.29MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e - \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1336832,\"total\":4245763},\"progress\":\"[===============\\u003e - \ ] 1.337MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2513920,\"total\":4245763},\"progress\":\"[=============================\\u003e - \ ] 2.514MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3759104,\"total\":4245763},\"progress\":\"[============================================\\u003e - \ ] 3.759MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e - \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] - \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1087488,\"total\":8442034},\"progress\":\"[======\\u003e - \ ] 1.087MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2508800,\"total\":8442034},\"progress\":\"[==============\\u003e - \ ] 2.509MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3802624,\"total\":8442034},\"progress\":\"[======================\\u003e - \ ] 3.803MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5670400,\"total\":8442034},\"progress\":\"[=================================\\u003e - \ ] 5.67MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7538176,\"total\":8442034},\"progress\":\"[============================================\\u003e - \ ] 7.538MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] - \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: - digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" - form: {} - headers: - Content-Type: - - application/json - X-Registry-Auth: - - eyJ1c2VybmFtZSI6IlNDVzdWR1RLUDVXSE1HUzU4TVExIiwicGFzc3dvcmQiOiI2ZTUxNTc3NS0yZmY3LTQ0YTItOGY1Ni01NGEzYmMxZDU5NGYiLCJzZXJ2ZXJhZGRyZXNzIjoicmcuZnItcGFyLnNjdy5jbG91ZC9mdW5jc2N3Y2xpdGN0bnJkZXBsb3lzbndldnFta2wifQ== - url: http://%2Fvar%2Frun%2Fdocker.sock/v1.51/images/rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s/push?tag=latest - method: POST - response: - body: "{\"status\":\"The push refers to repository [rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s]\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Waiting\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":4619},\"progress\":\"[=====\\u003e - \ ] 512B/4.619kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7168,\"total\":4619},\"progress\":\"[==================================================\\u003e] - \ 7.168kB\",\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4096,\"total\":144},\"progress\":\"[==================================================\\u003e] - \ 4.096kB\",\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":412396,\"total\":41047172},\"progress\":\"[\\u003e - \ ] 412.4kB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2108928,\"total\":41047172},\"progress\":\"[==\\u003e - \ ] 2.109MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3392000,\"total\":41047172},\"progress\":\"[====\\u003e - \ ] 3.392MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4641792,\"total\":41047172},\"progress\":\"[=====\\u003e - \ ] 4.642MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5908480,\"total\":41047172},\"progress\":\"[=======\\u003e - \ ] 5.908MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7612416,\"total\":41047172},\"progress\":\"[=========\\u003e - \ ] 7.612MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":10168320,\"total\":41047172},\"progress\":\"[============\\u003e - \ ] 10.17MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":11872256,\"total\":41047172},\"progress\":\"[==============\\u003e - \ ] 11.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":13150208,\"total\":41047172},\"progress\":\"[================\\u003e - \ ] 13.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":99328,\"total\":8669818},\"progress\":\"[\\u003e - \ ] 99.33kB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":14445056,\"total\":41047172},\"progress\":\"[=================\\u003e - \ ] 14.45MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1289728,\"total\":8669818},\"progress\":\"[=======\\u003e - \ ] 1.29MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":16176128,\"total\":41047172},\"progress\":\"[===================\\u003e - \ ] 16.18MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2469376,\"total\":8669818},\"progress\":\"[==============\\u003e - \ ] 2.469MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9bd69bb06fd1\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3845632,\"total\":8669818},\"progress\":\"[======================\\u003e - \ ] 3.846MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":17865728,\"total\":41047172},\"progress\":\"[=====================\\u003e - \ ] 17.87MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":3018},\"progress\":\"[========\\u003e - \ ] 512B/3.018kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5120,\"total\":3018},\"progress\":\"[==================================================\\u003e] - \ 5.12kB\",\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5390848,\"total\":8669818},\"progress\":\"[===============================\\u003e - \ ] 5.391MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":19154944,\"total\":41047172},\"progress\":\"[=======================\\u003e - \ ] 19.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":6769664,\"total\":8669818},\"progress\":\"[=======================================\\u003e - \ ] 6.77MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":20427264,\"total\":41047172},\"progress\":\"[========================\\u003e - \ ] 20.43MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8179712,\"total\":8669818},\"progress\":\"[===============================================\\u003e - \ ] 8.18MB/8.67MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":21677568,\"total\":41047172},\"progress\":\"[==========================\\u003e - \ ] 21.68MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8839168,\"total\":8669818},\"progress\":\"[==================================================\\u003e] - \ 8.839MB\",\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":22969856,\"total\":41047172},\"progress\":\"[===========================\\u003e - \ ] 22.97MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 512B\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2560,\"total\":389},\"progress\":\"[==================================================\\u003e] - \ 2.56kB\",\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":24673792,\"total\":41047172},\"progress\":\"[==============================\\u003e - \ ] 24.67MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":26372096,\"total\":41047172},\"progress\":\"[================================\\u003e - \ ] 26.37MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":27639808,\"total\":41047172},\"progress\":\"[=================================\\u003e - \ ] 27.64MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"a2ec75146a7f\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":29329408,\"total\":41047172},\"progress\":\"[===================================\\u003e - \ ] 29.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"dcfd04fc2e09\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":30609920,\"total\":41047172},\"progress\":\"[=====================================\\u003e - \ ] 30.61MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":32332800,\"total\":41047172},\"progress\":\"[=======================================\\u003e - \ ] 32.33MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":34044928,\"total\":41047172},\"progress\":\"[=========================================\\u003e - \ ] 34.04MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":2125},\"progress\":\"[============\\u003e - \ ] 512B/2.125kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4608,\"total\":2125},\"progress\":\"[==================================================\\u003e] - \ 4.608kB\",\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":512,\"total\":1620},\"progress\":\"[===============\\u003e - \ ] 512B/1.62kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3584,\"total\":1620},\"progress\":\"[==================================================\\u003e] - \ 3.584kB\",\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":35748864,\"total\":41047172},\"progress\":\"[===========================================\\u003e - \ ] 35.75MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":37439488,\"total\":41047172},\"progress\":\"[=============================================\\u003e - \ ] 37.44MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"45178d7e9376\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":39153664,\"total\":41047172},\"progress\":\"[===============================================\\u003e - \ ] 39.15MB/41.05MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41285556,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.29MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":41687040,\"total\":41047172},\"progress\":\"[==================================================\\u003e] - \ 41.69MB\",\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":71168,\"total\":4245763},\"progress\":\"[\\u003e - \ ] 71.17kB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"004f7270b76c\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1336832,\"total\":4245763},\"progress\":\"[===============\\u003e - \ ] 1.337MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2513920,\"total\":4245763},\"progress\":\"[=============================\\u003e - \ ] 2.514MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3759104,\"total\":4245763},\"progress\":\"[============================================\\u003e - \ ] 3.759MB/4.246MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":101376,\"total\":8442034},\"progress\":\"[\\u003e - \ ] 101.4kB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":4706304,\"total\":4245763},\"progress\":\"[==================================================\\u003e] - \ 4.706MB\",\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":1087488,\"total\":8442034},\"progress\":\"[======\\u003e - \ ] 1.087MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":2508800,\"total\":8442034},\"progress\":\"[==============\\u003e - \ ] 2.509MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":3802624,\"total\":8442034},\"progress\":\"[======================\\u003e - \ ] 3.803MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":5670400,\"total\":8442034},\"progress\":\"[=================================\\u003e - \ ] 5.67MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":7538176,\"total\":8442034},\"progress\":\"[============================================\\u003e - \ ] 7.538MB/8.442MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushing\",\"progressDetail\":{\"current\":8724480,\"total\":8442034},\"progress\":\"[==================================================\\u003e] - \ 8.724MB\",\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"44227ec39841\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"9f71ae529e9d\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"e4531687ef8e\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"7a44d12423b9\"}\r\n{\"status\":\"Pushed\",\"progressDetail\":{},\"id\":\"5aa68bbbc67e\"}\r\n{\"status\":\"latest: - digest: sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e - size: 2407\"}\r\n{\"progressDetail\":{},\"aux\":{\"Tag\":\"latest\",\"Digest\":\"sha256:c25fdf891bc87ab991d313f787d791803ecc1b4b60ac826932bc342b4a57132e\",\"Size\":2407}}\r\n" - headers: - Api-Version: - - "1.51" - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:46 GMT - Docker-Experimental: - - "false" - Ostype: - - linux - Server: - - Docker/28.5.1 (linux) - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"containers":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers?name=cli-t-ctnr-deploy-s&namespace_id=6136f95c-71c8-49b1-a186-142a1d4b8eb6&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"containers":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cd9a7b5-fc4a-4749-ad2f-a00ddb5bacb5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104310581Z", "updated_at":"2025-12-15T13:25:58.104310581Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104310581Z", "updated_at":"2025-12-15T13:25:58.104310581Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "991" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c6e23db-0d6a-4840-b7e2-4d9e96000204 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746324Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: PATCH - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746324Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28a132eb-3b2b-446f-a296-7c1c67438468 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: GET - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.398746Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bcd7cf60-48a9-4565-a5cb-439bd458404f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405420Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a/deploy - method: POST - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405420Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "986" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 715d221c-9c44-4262-9b93-c1ae39f3c1c3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: GET - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.535405Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:25:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de997694-14a9-4d7d-a8aa-f4b91415233b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: GET - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df0bad7f-7963-4063-a9e1-558e82ad203e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: GET - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:25:58.776718Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "983" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e23e027-9e7b-49cf-a2d4-bea3f6a13400 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:26:39.975283Z", - "ready_at":"2025-12-15T13:26:39.960972Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/8d4f0b59-b4a0-4c0a-8409-2622d25ca48a - method: GET - response: - body: '{"id":"8d4f0b59-b4a0-4c0a-8409-2622d25ca48a", "name":"cli-t-ctnr-deploy-s", - "namespace_id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl/cli-t-ctnr-deploy-s:latest", - "max_concurrency":50, "domain_name":"clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-12-15T13:25:58.104311Z", "updated_at":"2025-12-15T13:26:39.975283Z", - "ready_at":"2025-12-15T13:26:39.960972Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1006" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f542c997-f6cb-410d-8766-4ef2694438d2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"ready", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:25:27.842649Z", "vpc_integration_activated":false, - "region":"fr-par"}], "total_count":1}' - headers: - Content-Length: - - "632" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e3be03ee-0638-4ce8-afdb-9c0028d64da7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867159914Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: DELETE - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867159914Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "604" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7711d2f0-d815-4feb-812d-152fb1ce4416 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: GET - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ef40c3b-64bd-4457-afc5-337c6ce816a7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: GET - response: - body: '{"id":"6136f95c-71c8-49b1-a186-142a1d4b8eb6", "name":"cli-t-ctnr-deploy-s", - "environment_variables":{}, "organization_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", - "project_id":"37cfd5c4-06cd-4058-8948-38edd1c599ba", "status":"deleting", "registry_namespace_id":"bb0a0542-7b47-4590-9ff6-cbdafb6e6c50", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclitctnrdeploysnwevqmkl", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-12-15T13:25:25.632399Z", - "updated_at":"2025-12-15T13:26:43.867160Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:26:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9596a922-4a65-43ea-a92e-0903958c83d2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"message":"Namespace was not found"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/6136f95c-71c8-49b1-a186-142a1d4b8eb6 - method: GET - response: - body: '{"message":"Namespace was not found"}' - headers: - Content-Length: - - "37" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3deced2-034f-4a45-9250-680bb9f0c845 - status: 404 Not Found - code: 404 - duration: "" -- request: - body: '{"namespaces":[], "total_count":0}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?name=cli-t-ctnr-deploy-s&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[], "total_count":0}' - headers: - Content-Length: - - "34" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 15 Dec 2025 13:27:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b61c510-b7d4-42f6-9a1d-04059b9a038f - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden b/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden deleted file mode 100644 index 6933e00f7d..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-deploy-simple.golden +++ /dev/null @@ -1,6 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -Your application is now available at https://clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud - -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"Your application is now available at https://clitctnrdeploysnwevqmkl-cli-t-ctnr-deploy-s.functions.fnc.fr-par.scw.cloud\n" diff --git a/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.cassette.yaml deleted file mode 100644 index 5709170541..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.cassette.yaml +++ /dev/null @@ -1,4209 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":0, "created_at":"2025-10-27T14:17:53.140501039Z", - "updated_at":"2025-10-27T14:17:53.140501039Z", "image_count":0, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":0, "created_at":"2025-10-27T14:17:53.140501039Z", - "updated_at":"2025-10-27T14:17:53.140501039Z", "image_count":0, "region":"fr-par"}' - headers: - Content-Length: - - "502" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:17:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f286897-6ab6-4aaa-bed0-a3b96d6778cf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"images":[{"id":"1e8975c6-306d-419b-a187-e02def077895", "name":"sebp/lighttpd", - "namespace_id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "status":"ready", "status_message":"", - "visibility":"inherit", "size":4436608, "created_at":"2025-10-27T14:17:58.269600Z", - "updated_at":"2025-10-27T14:17:58.498655Z", "tags":["latest"]}], "total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/images?name=sebp%2Flighttpd&namespace_id=c91e9027-0a66-4d15-9ae4-5943af74b1ef&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"images":[{"id":"1e8975c6-306d-419b-a187-e02def077895", "name":"sebp/lighttpd", - "namespace_id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "status":"ready", "status_message":"", - "visibility":"inherit", "size":4436608, "created_at":"2025-10-27T14:17:58.269600Z", - "updated_at":"2025-10-27T14:17:58.498655Z", "tags":["latest"]}], "total_count":1}' - headers: - Content-Length: - - "340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0dd81051-efd4-4616-abd1-9733848992d1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125901977, - "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-27T13:33:56.482308Z", - "image_count":5, "region":"fr-par"}, {"id":"fa6b9795-60d2-4601-9f3d-cc13aade7abc", - "name":"cli-test-ctn-update-rg-img-dreamy-dijkstra", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-dreamy-dijkstra", - "is_public":false, "size":43586812, "created_at":"2025-10-22T15:20:08.990250Z", - "updated_at":"2025-10-22T15:20:36.995065Z", "image_count":2, "region":"fr-par"}, - {"id":"d43db03d-1074-4ca5-aefb-ea14c69f13ec", "name":"funcscwclicnsinterestinglamjl0oscie", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsinterestinglamjl0oscie", "is_public":false, - "size":0, "created_at":"2025-10-22T15:20:40.098796Z", "updated_at":"2025-10-22T15:20:40.098796Z", - "image_count":0, "region":"fr-par"}, {"id":"45655c7b-d04d-4222-a22f-d8a48f34e6f1", - "name":"cli-test-ctn-update-rg-img-blissful-sutherland", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-blissful-sutherland", - "is_public":false, "size":43586812, "created_at":"2025-10-22T16:16:08.288221Z", - "updated_at":"2025-10-22T16:16:24.227958Z", "image_count":2, "region":"fr-par"}, - {"id":"3e2e8679-1812-4b46-a95c-08410c1dd17e", "name":"funcscwclicnsserenebardeenkbin7tx5", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsserenebardeenkbin7tx5", "is_public":false, - "size":0, "created_at":"2025-10-22T16:16:28.198044Z", "updated_at":"2025-10-22T16:16:28.198044Z", - "image_count":0, "region":"fr-par"}, {"id":"fb838f51-f302-48ab-aaf7-9b0c71ac0ae1", - "name":"cli-test-ctn-update-rg-img-youthful-blackwell", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-youthful-blackwell", - "is_public":false, "size":43586812, "created_at":"2025-10-23T08:26:00.627656Z", - "updated_at":"2025-10-23T08:26:21.357262Z", "image_count":2, "region":"fr-par"}, - {"id":"82239a87-8b38-49ca-9ba2-7c7127a90f63", "name":"funcscwclicnseagerdijkstraolqlxhgb", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnseagerdijkstraolqlxhgb", "is_public":false, - "size":0, "created_at":"2025-10-23T08:26:25.794789Z", "updated_at":"2025-10-23T08:26:25.794789Z", - "image_count":0, "region":"fr-par"}, {"id":"f7381e34-2bad-4550-90ad-d76f9ade837c", - "name":"cli-test-ctn-update-rg-img-pensive-neumann", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-pensive-neumann", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:11:06.241056Z", - "updated_at":"2025-10-27T14:11:32.437930Z", "image_count":2, "region":"fr-par"}, - {"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:18:06.548716Z", "image_count":2, "region":"fr-par"}], - "total_count":9}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125901977, - "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-27T13:33:56.482308Z", - "image_count":5, "region":"fr-par"}, {"id":"fa6b9795-60d2-4601-9f3d-cc13aade7abc", - "name":"cli-test-ctn-update-rg-img-dreamy-dijkstra", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-dreamy-dijkstra", - "is_public":false, "size":43586812, "created_at":"2025-10-22T15:20:08.990250Z", - "updated_at":"2025-10-22T15:20:36.995065Z", "image_count":2, "region":"fr-par"}, - {"id":"d43db03d-1074-4ca5-aefb-ea14c69f13ec", "name":"funcscwclicnsinterestinglamjl0oscie", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsinterestinglamjl0oscie", "is_public":false, - "size":0, "created_at":"2025-10-22T15:20:40.098796Z", "updated_at":"2025-10-22T15:20:40.098796Z", - "image_count":0, "region":"fr-par"}, {"id":"45655c7b-d04d-4222-a22f-d8a48f34e6f1", - "name":"cli-test-ctn-update-rg-img-blissful-sutherland", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-blissful-sutherland", - "is_public":false, "size":43586812, "created_at":"2025-10-22T16:16:08.288221Z", - "updated_at":"2025-10-22T16:16:24.227958Z", "image_count":2, "region":"fr-par"}, - {"id":"3e2e8679-1812-4b46-a95c-08410c1dd17e", "name":"funcscwclicnsserenebardeenkbin7tx5", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsserenebardeenkbin7tx5", "is_public":false, - "size":0, "created_at":"2025-10-22T16:16:28.198044Z", "updated_at":"2025-10-22T16:16:28.198044Z", - "image_count":0, "region":"fr-par"}, {"id":"fb838f51-f302-48ab-aaf7-9b0c71ac0ae1", - "name":"cli-test-ctn-update-rg-img-youthful-blackwell", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-youthful-blackwell", - "is_public":false, "size":43586812, "created_at":"2025-10-23T08:26:00.627656Z", - "updated_at":"2025-10-23T08:26:21.357262Z", "image_count":2, "region":"fr-par"}, - {"id":"82239a87-8b38-49ca-9ba2-7c7127a90f63", "name":"funcscwclicnseagerdijkstraolqlxhgb", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnseagerdijkstraolqlxhgb", "is_public":false, - "size":0, "created_at":"2025-10-23T08:26:25.794789Z", "updated_at":"2025-10-23T08:26:25.794789Z", - "image_count":0, "region":"fr-par"}, {"id":"f7381e34-2bad-4550-90ad-d76f9ade837c", - "name":"cli-test-ctn-update-rg-img-pensive-neumann", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-pensive-neumann", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:11:06.241056Z", - "updated_at":"2025-10-27T14:11:32.437930Z", "image_count":2, "region":"fr-par"}, - {"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:18:06.548716Z", "image_count":2, "region":"fr-par"}], - "total_count":9}' - headers: - Content-Length: - - "4459" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4bc6d7af-dd84-4b4a-bf73-f445eb31e2b1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"images":[{"id":"90bd29a2-468c-44a0-aebb-aa7c5570184f", "name":"nginx", - "namespace_id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "status":"ready", "status_message":"", - "visibility":"inherit", "size":22583979, "created_at":"2025-10-27T14:18:05.642688Z", - "updated_at":"2025-10-27T14:18:06.542177Z", "tags":["1.29.2-alpine"]}], "total_count":1}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/images?name=nginx&namespace_id=c91e9027-0a66-4d15-9ae4-5943af74b1ef&order_by=created_at_asc&page=1 - method: GET - response: - body: '{"images":[{"id":"90bd29a2-468c-44a0-aebb-aa7c5570184f", "name":"nginx", - "namespace_id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "status":"ready", "status_message":"", - "visibility":"inherit", "size":22583979, "created_at":"2025-10-27T14:18:05.642688Z", - "updated_at":"2025-10-27T14:18:06.542177Z", "tags":["1.29.2-alpine"]}], "total_count":1}' - headers: - Content-Length: - - "340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d3494cb1-0499-40a7-90d1-0d9fca2727f5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125901977, - "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-27T13:33:56.482308Z", - "image_count":5, "region":"fr-par"}, {"id":"fa6b9795-60d2-4601-9f3d-cc13aade7abc", - "name":"cli-test-ctn-update-rg-img-dreamy-dijkstra", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-dreamy-dijkstra", - "is_public":false, "size":43586812, "created_at":"2025-10-22T15:20:08.990250Z", - "updated_at":"2025-10-22T15:20:36.995065Z", "image_count":2, "region":"fr-par"}, - {"id":"d43db03d-1074-4ca5-aefb-ea14c69f13ec", "name":"funcscwclicnsinterestinglamjl0oscie", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsinterestinglamjl0oscie", "is_public":false, - "size":0, "created_at":"2025-10-22T15:20:40.098796Z", "updated_at":"2025-10-22T15:20:40.098796Z", - "image_count":0, "region":"fr-par"}, {"id":"45655c7b-d04d-4222-a22f-d8a48f34e6f1", - "name":"cli-test-ctn-update-rg-img-blissful-sutherland", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-blissful-sutherland", - "is_public":false, "size":43586812, "created_at":"2025-10-22T16:16:08.288221Z", - "updated_at":"2025-10-22T16:16:24.227958Z", "image_count":2, "region":"fr-par"}, - {"id":"3e2e8679-1812-4b46-a95c-08410c1dd17e", "name":"funcscwclicnsserenebardeenkbin7tx5", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsserenebardeenkbin7tx5", "is_public":false, - "size":0, "created_at":"2025-10-22T16:16:28.198044Z", "updated_at":"2025-10-22T16:16:28.198044Z", - "image_count":0, "region":"fr-par"}, {"id":"fb838f51-f302-48ab-aaf7-9b0c71ac0ae1", - "name":"cli-test-ctn-update-rg-img-youthful-blackwell", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-youthful-blackwell", - "is_public":false, "size":43586812, "created_at":"2025-10-23T08:26:00.627656Z", - "updated_at":"2025-10-23T08:26:21.357262Z", "image_count":2, "region":"fr-par"}, - {"id":"82239a87-8b38-49ca-9ba2-7c7127a90f63", "name":"funcscwclicnseagerdijkstraolqlxhgb", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnseagerdijkstraolqlxhgb", "is_public":false, - "size":0, "created_at":"2025-10-23T08:26:25.794789Z", "updated_at":"2025-10-23T08:26:25.794789Z", - "image_count":0, "region":"fr-par"}, {"id":"f7381e34-2bad-4550-90ad-d76f9ade837c", - "name":"cli-test-ctn-update-rg-img-pensive-neumann", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-pensive-neumann", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:11:06.241056Z", - "updated_at":"2025-10-27T14:11:32.437930Z", "image_count":2, "region":"fr-par"}, - {"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:18:06.548716Z", "image_count":2, "region":"fr-par"}], - "total_count":9}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces?order_by=created_at_asc&page=1 - method: GET - response: - body: '{"namespaces":[{"id":"681422c2-2605-485d-be8c-4caaba0e40ad", "name":"bidouille", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/bidouille", "is_public":false, "size":125901977, - "created_at":"2025-10-13T14:51:28.239376Z", "updated_at":"2025-10-27T13:33:56.482308Z", - "image_count":5, "region":"fr-par"}, {"id":"fa6b9795-60d2-4601-9f3d-cc13aade7abc", - "name":"cli-test-ctn-update-rg-img-dreamy-dijkstra", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-dreamy-dijkstra", - "is_public":false, "size":43586812, "created_at":"2025-10-22T15:20:08.990250Z", - "updated_at":"2025-10-22T15:20:36.995065Z", "image_count":2, "region":"fr-par"}, - {"id":"d43db03d-1074-4ca5-aefb-ea14c69f13ec", "name":"funcscwclicnsinterestinglamjl0oscie", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsinterestinglamjl0oscie", "is_public":false, - "size":0, "created_at":"2025-10-22T15:20:40.098796Z", "updated_at":"2025-10-22T15:20:40.098796Z", - "image_count":0, "region":"fr-par"}, {"id":"45655c7b-d04d-4222-a22f-d8a48f34e6f1", - "name":"cli-test-ctn-update-rg-img-blissful-sutherland", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-blissful-sutherland", - "is_public":false, "size":43586812, "created_at":"2025-10-22T16:16:08.288221Z", - "updated_at":"2025-10-22T16:16:24.227958Z", "image_count":2, "region":"fr-par"}, - {"id":"3e2e8679-1812-4b46-a95c-08410c1dd17e", "name":"funcscwclicnsserenebardeenkbin7tx5", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnsserenebardeenkbin7tx5", "is_public":false, - "size":0, "created_at":"2025-10-22T16:16:28.198044Z", "updated_at":"2025-10-22T16:16:28.198044Z", - "image_count":0, "region":"fr-par"}, {"id":"fb838f51-f302-48ab-aaf7-9b0c71ac0ae1", - "name":"cli-test-ctn-update-rg-img-youthful-blackwell", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-youthful-blackwell", - "is_public":false, "size":43586812, "created_at":"2025-10-23T08:26:00.627656Z", - "updated_at":"2025-10-23T08:26:21.357262Z", "image_count":2, "region":"fr-par"}, - {"id":"82239a87-8b38-49ca-9ba2-7c7127a90f63", "name":"funcscwclicnseagerdijkstraolqlxhgb", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"19a4819b-24bf-4d44-969f-935ef0061b71", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/funcscwclicnseagerdijkstraolqlxhgb", "is_public":false, - "size":0, "created_at":"2025-10-23T08:26:25.794789Z", "updated_at":"2025-10-23T08:26:25.794789Z", - "image_count":0, "region":"fr-par"}, {"id":"f7381e34-2bad-4550-90ad-d76f9ade837c", - "name":"cli-test-ctn-update-rg-img-pensive-neumann", "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-pensive-neumann", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:11:06.241056Z", - "updated_at":"2025-10-27T14:11:32.437930Z", "image_count":2, "region":"fr-par"}, - {"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:18:06.548716Z", "image_count":2, "region":"fr-par"}], - "total_count":9}' - headers: - Content-Length: - - "4459" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 770861e7-bd6e-4eef-a926-40e1cfe5875e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-27T14:18:08.360052069Z", "updated_at":"2025-10-27T14:18:08.360052069Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-27T14:18:08.360052069Z", "updated_at":"2025-10-27T14:18:08.360052069Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "521" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0720d030-5ea1-421e-8b1d-cb194ca5904e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", "updated_at":"2025-10-27T14:18:08.360052Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/7bc2181b-12ca-4497-8714-248420baa927 - method: GET - response: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", "updated_at":"2025-10-27T14:18:08.360052Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "515" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13510281-ac4d-411a-b5b1-162a65f4ae94 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:18:13.258331Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/7bc2181b-12ca-4497-8714-248420baa927 - method: GET - response: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:18:13.258331Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "603" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de7cc2ae-4e41-4f65-9488-0a29ad3c16d7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:18:13.487647Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/7bc2181b-12ca-4497-8714-248420baa927 - method: GET - response: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:18:13.487647Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "601" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab486c14-2b9e-47a7-9956-eb578a213beb - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925140Z", "updated_at":"2025-10-27T14:18:18.768925140Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925140Z", "updated_at":"2025-10-27T14:18:18.768925140Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1007" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3cb49ceb-356b-4a05-83ab-d116daea5556 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:18.869967768Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35/deploy - method: POST - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:18.869967768Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ecff4bf-64e4-4d11-9fdd-fa669cc19d2b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:18.869968Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:18.869968Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f36e3404-6fb8-45f1-89e5-8216fa81fada - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 774f952f-1fe0-4db6-80b9-5447aa46735e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43fcddeb-adcf-4ac7-b634-89cd003bf7ff - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:34 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a826d60a-edf0-419d-bc68-9298affafe2a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8cfa73b7-3d26-4b94-a137-7c2172445f20 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08ec1db8-76ae-4553-804f-e71ff66ed545 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 828e5864-a19f-4cd8-bf17-8726f7ab8c50 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fac4dc88-2282-4e74-9d49-456d7af67640 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:18:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df385dab-4387-42e9-b72e-a88c8cff8fc6 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 80659301-22d0-40cb-b858-a4a3e8f46854 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6f6ce7b-f97a-4d88-a21e-5568ac3473ab - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27583987-96d0-467c-a83e-8a645fa2f5aa - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3223ef83-38e1-4d5b-bf99-2313b6a9a00f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 85c9d200-abb4-406d-a455-4d86a58933e9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:30 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7ede133-7e50-4c16-8232-11f702470bc2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b9305c2f-305b-43ed-927b-1b3408c2d5fe - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90e457bc-6466-45ad-85ef-522594619676 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 33e6299d-0c88-46ce-80ce-237aa4475b14 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30a3c3a3-e449-433e-9af2-8115f295f1d2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:19:55 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0723da09-ae55-4f79-b919-e476a211a832 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 661885e7-eab6-4137-90cf-25b1e2a18b6d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a7a31d8-3bea-491a-8413-c3a1eeab1ed6 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b4c63f2-c729-43de-8a79-31b69576ae0b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed0725e1-b067-431e-8f63-3a9e3178f652 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c7aa3f0-131d-4fd9-b122-67810ebcc24e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4cfd2727-5f3d-4462-ace2-8760a73efac1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:30 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8b25a23-8cf7-4070-ae0e-517dc0e3f171 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d35db6ec-a357-45d5-86e9-eb5deea9cd60 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c884704-dab4-4fe6-a118-a6e20d6b7011 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c7e27a4-b56a-46fa-9bc4-f39b6d23ab6c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17dd7ae6-7071-4a2d-82f5-35033d98d339 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:20:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 332f4088-c759-4568-b69d-f4f1db7e76d9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7fff2384-88c8-4996-8499-bd5c0ccdda27 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd90be65-50c9-4b59-9630-c80ea5e4c58c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a271263-dd49-464b-95aa-0858b99619b0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28443e19-4ade-4375-a067-5ffd1d6ec2f5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8403e76f-d54b-4f59-88c4-a7c9311a4069 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c0e9504-4175-4d89-a71d-68d1f6b680b3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:31 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f173f43-75d5-4a4f-9d38-6a644bf95fa2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 11019487-65b6-4d86-b8b1-3d454debfe0b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7510e37-a84f-4e60-bea6-44ee85ec1701 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d39708a0-da48-4157-bbdd-02d50daebb54 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d5f9eda-d215-474a-a51f-d1a33388d808 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:21:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d1c8a07-2876-4f5f-b013-4d5d093383b1 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63877647-06e2-4d9a-80f2-69c6c5514143 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7f112fbc-fe42-4a9f-b70c-504d7fe4145c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c8a2a42-f1a7-430b-a9b1-508bd97b4bb2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0ceb1a9-5571-4b5f-a0c6-e2c67855fc08 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 391b31f3-31c1-4eaa-835f-dfff96665b57 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a762a514-8089-4cc4-8330-c95663896ce7 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e709f77f-6c4d-4d71-80d7-4790d38dadd0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0256de7a-4457-4c62-b35d-5b74150e620b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d2a9977-1d10-40f9-ac74-8799138c993f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a67f8c83-ed8c-48e7-9a09-882846e2c36f - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 38ffa5cc-e445-448d-8d06-a0d41862f9ef - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:22:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f6d8ff5-880a-4d39-a9a0-1e2882520807 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fc0296e6-43f6-40c2-954b-59b0b94f6390 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74cb8a54-7c49-4833-b283-da7371fa5a46 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4af76e89-9e81-4978-81de-3a0953eb99b2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9f3a0f45-8533-4b97-be4a-d7c395840c1e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b8d5eda-1441-4c1d-a91f-e45b90cd9b66 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b4cfc07-7c19-4c27-8c6f-9c5d458dfb76 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:18:19.136286Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1001" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:33 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dcb33509-bdc1-4d48-a926-f78ecbaf7925 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Container is unable to start OR is not listening on port 80 - . Check your logs on Cockpit for more details", "privacy":"public", "description":"", - "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:35.941780Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Container is unable to start OR is not listening on port 80 - . Check your logs on Cockpit for more details", "privacy":"public", "description":"", - "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/sebp/lighttpd:latest", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:35.941780Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1102" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 420bb247-49bd-4821-a317-a6ea113ed810 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648791605Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: PATCH - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648791605Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1003" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 898f5090-9a2d-4742-bd99-db1bb1c72c23 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1000" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad7b1d7b-9aa9-4b24-9f35-09fb3cbf5c54 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1000" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 290b310f-7dcb-4e52-b257-a05b1a5d35aa - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:38.648792Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1000" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5479588c-18c7-40ad-881c-480937ee24d5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:49.619434Z", - "ready_at":"2025-10-27T14:23:49.606211Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 - method: GET - response: - body: '{"id":"6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", "name":"cli-test-boring-margulis", - "namespace_id":"7bc2181b-12ca-4497-8714-248420baa927", "status":"ready", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency":50, "domain_name":"clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-27T14:18:18.768925Z", "updated_at":"2025-10-27T14:23:49.619434Z", - "ready_at":"2025-10-27T14:23:49.606211Z", "health_check":{"failure_threshold":30, - "interval":"10s", "tcp":{}}, "tags":[], "private_network_id":null, "command":[], - "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1023" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bca5bf14-ab6c-41f3-86dc-e3652e0292c8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:23:53.953770104Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/7bc2181b-12ca-4497-8714-248420baa927 - method: DELETE - response: - body: '{"id":"7bc2181b-12ca-4497-8714-248420baa927", "name":"cli-cns-upbeat-kilby", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"48302b54-9f5d-4008-bc5b-92ace1d17db4", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsupbeatkilbyj4rddccg", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-27T14:18:08.360052Z", - "updated_at":"2025-10-27T14:23:53.953770104Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "607" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a39f0af8-bf49-49bc-a4b8-4b1e7af286cf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:23:54.220494871Z", "image_count":2, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/registry/v1/regions/fr-par/namespaces/c91e9027-0a66-4d15-9ae4-5943af74b1ef - method: DELETE - response: - body: '{"id":"c91e9027-0a66-4d15-9ae4-5943af74b1ef", "name":"cli-test-ctn-update-rg-img-hardcore-banzai", - "description":"", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "status_message":"", - "endpoint":"rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai", - "is_public":false, "size":27020587, "created_at":"2025-10-27T14:17:53.140501Z", - "updated_at":"2025-10-27T14:23:54.220494871Z", "image_count":2, "region":"fr-par"}' - headers: - Content-Length: - - "509" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 27 Oct 2025 14:23:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6335a849-1bf5-4b5b-b1b9-61431c051b01 - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.golden b/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.golden deleted file mode 100644 index 6ea030868c..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-update-container-registry-image.golden +++ /dev/null @@ -1,69 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 6d2eea3a-29ac-4bd8-983a-8f4a8400bc35 -Name cli-test-boring-margulis -NamespaceID 7bc2181b-12ca-4497-8714-248420baa927 -Status ready -MinScale 0 -MaxScale 5 -MemoryLimit 2048 -CPULimit 1000 -Timeout 5 minutes -Privacy public -Description - -RegistryImage rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine -MaxConcurrency 50 -DomainName clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud -Protocol http1 -Port 80 -HTTPOption enabled -Sandbox v2 -LocalStorageLimit 1000 -ScalingOption.ConcurrentRequestsThreshold 50 -HealthCheck.FailureThreshold 30 -HealthCheck.Interval 10 seconds -CreatedAt few seconds ago -UpdatedAt few seconds ago -ReadyAt few seconds ago -Region fr-par -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -{ - "id": "6d2eea3a-29ac-4bd8-983a-8f4a8400bc35", - "name": "cli-test-boring-margulis", - "namespace_id": "7bc2181b-12ca-4497-8714-248420baa927", - "status": "ready", - "environment_variables": {}, - "min_scale": 0, - "max_scale": 5, - "memory_limit": 2048, - "cpu_limit": 1000, - "timeout": "300.000000000s", - "error_message": null, - "privacy": "public", - "description": "", - "registry_image": "rg.fr-par.scw.cloud/cli-test-ctn-update-rg-img-hardcore-banzai/nginx:1.29.2-alpine", - "max_concurrency": 50, - "domain_name": "clicnsupbeatkilbyj4rddccg-cli-test-boring-margulis.functions.fnc.fr-par.scw.cloud", - "protocol": "http1", - "port": 80, - "secret_environment_variables": [], - "http_option": "enabled", - "sandbox": "v2", - "local_storage_limit": 1000, - "scaling_option": { - "concurrent_requests_threshold": 50 - }, - "health_check": { - "tcp": {}, - "failure_threshold": 30, - "interval": "10.000000000s" - }, - "created_at": "1970-01-01T00:00:00.0Z", - "updated_at": "1970-01-01T00:00:00.0Z", - "ready_at": "1970-01-01T00:00:00.0Z", - "region": "fr-par", - "tags": [], - "private_network_id": null, - "command": [], - "args": [] -} diff --git a/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.cassette.yaml b/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.cassette.yaml deleted file mode 100644 index 8363312f03..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.cassette.yaml +++ /dev/null @@ -1,485 +0,0 @@ ---- -version: 1 -interactions: -- request: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:58:51.395710306Z", "updated_at":"2025-10-23T08:58:51.395710306Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST - response: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:58:51.395710306Z", "updated_at":"2025-10-23T08:58:51.395710306Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "525" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8b60bf9-7c45-423c-bf96-e346c8f0a7ee - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", "updated_at":"2025-10-23T08:58:51.395710Z", - "vpc_integration_activated":false, "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4 - method: GET - response: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"pending", "registry_namespace_id":"", - "error_message":null, "registry_endpoint":"", "description":"", "secret_environment_variables":[], - "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", "updated_at":"2025-10-23T08:58:51.395710Z", - "vpc_integration_activated":false, "region":"fr-par"}' - headers: - Content-Length: - - "519" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8acc07f1-f9b4-4a25-b72d-10f60067b1a2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"260279b3-f7a5-43a8-ba09-ee93319d183e", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", - "updated_at":"2025-10-23T08:58:53.448004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4 - method: GET - response: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "registry_namespace_id":"260279b3-f7a5-43a8-ba09-ee93319d183e", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", - "updated_at":"2025-10-23T08:58:53.448004Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "608" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6db92252-bd73-4ed0-bf3a-89f2a0823214 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699307Z", "updated_at":"2025-10-23T08:58:56.775699307Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"created", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699307Z", "updated_at":"2025-10-23T08:58:56.775699307Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1010" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30e2a530-7f79-4c91-aa65-735e389f656e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:56.900021079Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/53c229f3-ac9a-48c4-8021-aec9c98b0092/deploy - method: POST - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:56.900021079Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1007" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 299f7a5e-96e5-4ff5-9b05-755abc01b058 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:56.900021Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/53c229f3-ac9a-48c4-8021-aec9c98b0092 - method: GET - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:56.900021Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:58:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25b9ade7-5e9e-4892-8cfd-477635980679 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:57.137906Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/53c229f3-ac9a-48c4-8021-aec9c98b0092 - method: GET - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:58:57.137906Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:59:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7fe0472-2688-4a3a-a421-0b583fa7fbe4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Image was not found in container registry.", "privacy":"public", - "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:59:03.697359Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/53c229f3-ac9a-48c4-8021-aec9c98b0092 - method: GET - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"error", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1000, "timeout":"300s", - "error_message":"Image was not found in container registry.", "privacy":"public", - "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":8080, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:59:03.697359Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":[], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1042" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:59:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1074898-76fa-427b-8288-f9be89077d68 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1500, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:59:07.331556604Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":["new_tag"], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/53c229f3-ac9a-48c4-8021-aec9c98b0092 - method: PATCH - response: - body: '{"id":"53c229f3-ac9a-48c4-8021-aec9c98b0092", "name":"cli-test-awesome-kirch", - "namespace_id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "status":"pending", "environment_variables":{}, - "min_scale":0, "max_scale":5, "memory_limit":2048, "cpu_limit":1500, "timeout":"300s", - "error_message":null, "privacy":"public", "description":"", "registry_image":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency":50, "domain_name":"clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol":"http1", "port":80, "secret_environment_variables":[], "http_option":"enabled", - "sandbox":"v2", "local_storage_limit":1000, "scaling_option":{"concurrent_requests_threshold":50}, - "created_at":"2025-10-23T08:58:56.775699Z", "updated_at":"2025-10-23T08:59:07.331556604Z", - "ready_at":null, "health_check":{"failure_threshold":30, "interval":"10s", "tcp":{}}, - "tags":["new_tag"], "private_network_id":null, "command":[], "args":[], "region":"fr-par"}' - headers: - Content-Length: - - "1014" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:59:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad88881b-2203-46af-8eab-3155e06ac476 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"260279b3-f7a5-43a8-ba09-ee93319d183e", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", - "updated_at":"2025-10-23T08:59:07.409536210Z", "vpc_integration_activated":false, - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4 - method: DELETE - response: - body: '{"id":"d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", "name":"cli-cns-optimistic-payne", - "environment_variables":{}, "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "registry_namespace_id":"260279b3-f7a5-43a8-ba09-ee93319d183e", - "error_message":null, "registry_endpoint":"rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq", - "description":"", "secret_environment_variables":[], "tags":[], "created_at":"2025-10-23T08:58:51.395710Z", - "updated_at":"2025-10-23T08:59:07.409536210Z", "vpc_integration_activated":false, - "region":"fr-par"}' - headers: - Content-Length: - - "614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 23 Oct 2025 08:59:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70b8ee98-a4e7-42b2-8be9-51fac69c6e21 - status: 200 OK - code: 200 - duration: "" diff --git a/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.golden b/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.golden deleted file mode 100644 index 4729aec1a7..0000000000 --- a/internal/namespaces/container/v1beta1/testdata/test-update-container-simple.golden +++ /dev/null @@ -1,71 +0,0 @@ -🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 -🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 53c229f3-ac9a-48c4-8021-aec9c98b0092 -Name cli-test-awesome-kirch -NamespaceID d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4 -Status pending -MinScale 0 -MaxScale 5 -MemoryLimit 2048 -CPULimit 1500 -Timeout 5 minutes -Privacy public -Description - -RegistryImage rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest -MaxConcurrency 50 -DomainName clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud -Protocol http1 -Port 80 -HTTPOption enabled -Sandbox v2 -LocalStorageLimit 1000 -ScalingOption.ConcurrentRequestsThreshold 50 -HealthCheck.FailureThreshold 30 -HealthCheck.Interval 10 seconds -CreatedAt few seconds ago -UpdatedAt few seconds ago -Region fr-par -Tags.0 new_tag -🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -{ - "id": "53c229f3-ac9a-48c4-8021-aec9c98b0092", - "name": "cli-test-awesome-kirch", - "namespace_id": "d65b72e6-05ef-4c4d-a3c0-34099ffbbbd4", - "status": "pending", - "environment_variables": {}, - "min_scale": 0, - "max_scale": 5, - "memory_limit": 2048, - "cpu_limit": 1500, - "timeout": "300.000000000s", - "error_message": null, - "privacy": "public", - "description": "", - "registry_image": "rg.fr-par.scw.cloud/funcscwclicnsoptimisticpaynenzkzzsq/cli-test-awesome-kirch:latest", - "max_concurrency": 50, - "domain_name": "clicnsoptimisticpaynenzkzzsq-cli-test-awesome-kirch.functions.fnc.fr-par.scw.cloud", - "protocol": "http1", - "port": 80, - "secret_environment_variables": [], - "http_option": "enabled", - "sandbox": "v2", - "local_storage_limit": 1000, - "scaling_option": { - "concurrent_requests_threshold": 50 - }, - "health_check": { - "tcp": {}, - "failure_threshold": 30, - "interval": "10.000000000s" - }, - "created_at": "1970-01-01T00:00:00.0Z", - "updated_at": "1970-01-01T00:00:00.0Z", - "ready_at": null, - "region": "fr-par", - "tags": [ - "new_tag" - ], - "private_network_id": null, - "command": [], - "args": [] -}