When I build the following docker image:
```
FROM alpine:3.15
RUN apk update && apk upgrade && apk add --no-cache grpc-cli
```
and then run it using `docker run -it my_image:latest /bin/sh` it gives the following error:
```
> grpc_cli
Error loading shared library libgrpc++_test_config.so.1.42: No such file or directory (needed by /usr/bin/grpc_cli)
Error relocating /usr/bin/grpc_cli: _ZN4grpc7testing8InitTestEPiPPPcb: symbol not found
```
This package worked correctly in alpine 3.14 and I eventually found the issue was that the file was mis-named as `/usr/lib/libgrpc++_test_config.so.1.42.0`. Creating a soft link resolved the issue:
```
ln -s /usr/lib/libgrpc++_test_config.so.1.42.0 /usr/lib/libgrpc++_test_config.so.1.42
```
Can this issue be corrected in the Alpine 3.15 package itself?