Issue:
perl:<version>-slim image used here "only contains the minimal packages needed to run perl", meaning for example lack of TLS support, which is rather important in case of functions.
Proposed Fix:
This can be resolved in one of two ways:
- Add required Debian modules to the Dockerfile and keep using
5.28.2-slim image (112MB)
- Switch to full image
5.28.2 image (891MB)
For obvious reasons, first approach is preferred - it will increase the image size but not as much as switching to full version.
Issue:
perl:<version>-slimimage used here "only contains the minimal packages needed to runperl", meaning for example lack of TLS support, which is rather important in case of functions.Proposed Fix:
This can be resolved in one of two ways:
5.28.2-slimimage (112MB)5.28.2image (891MB)For obvious reasons, first approach is preferred - it will increase the image size but not as much as switching to full version.