InvalidPackageError
Raised when an invalid system package is detected during image build.
Attributes
| Attribute | Type | Description |
|---|---|---|
| package_name | str | The name of the system package that was not found in the apt repositories. |
| original_error | str | The raw error message returned by the package manager during the failed detection attempt. |
Constructor
Signature
def InvalidPackageError(
package_name: string,
original_error: string
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| package_name | string | The name of the invalid system package. |
| original_error | string | The error message returned by the system package manager. |
Signature
def InvalidPackageError(
package_name: string,
original_error: string
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| package_name | string | The name of the system package that was identified as invalid or missing from the repository. |
| original_error | string | The raw error message or traceback received from the package manager during the failed lookup. |