Error converting data type nvarchar to numeric.
A clear error message, your varchar data contains in some rows not convertable/numeric values.
You can try finding them with
select *
from containerno
where isnumeric(Cl_amt) = 0
But no garantuee it will find all cases, e.g. exponential presentation of floats like 10E2 are numerics to, but not implicit convertable to numeric data type, only to float.