
- #E package libauthen pam perl has no installation candidate install#
- #E package libauthen pam perl has no installation candidate update#
I want to add spell checking to my Perl program. Regarding the version, apt show libssl-dev gives:Īs far as if you can use 1.1.0 instead of 1.0.0, that really depends on your software's requirements. Sample Dockerfile addition: RUN wget "" \
#E package libauthen pam perl has no installation candidate install#
You can pull the package from jessie ( ) and install with dpkg. The perl image is based on debian:stretch, which no longer supports libssl1.0.0. Secure Sockets Layer toolkit - shared libraries Secure Sockets Layer toolkit - development files

$ docker run -it perl:5.22 apt search libssl Lastly, since the base image already comes preinstalled with the libssl-dev could I use this package, libssl-dev, instead of the libssl1.0.0, is there a difference between libssl-dev and libssl1.0.0 ?Īctually, it is already installed by default. I'm new with docker does the perl 5.22 base image already come with libssl1.0.0 already preinstalled in the image? I couldn't see it in their base image and secondly, *how do I install this package (libssl1.0.0) in my dockerfile if there's no candidate available to install it*?

However there's a candidate to install the libssl-dev package, but none for the libssl1.0.0 There's no available candidate to install libssl1.0.0 I get:Į: Package 'libssl1.0.0' has no installation candidate Libssl-dev -> Running in a60f0185ef5a libssl1.0.0: Step 2/3 : RUN apt-cache policy libssl1.0.0 & apt-cache policy
#E package libauthen pam perl has no installation candidate update#
RUN apt-get update & apt-get install libssl1.0.0 When I do: sudo apt-cache policy libssl1.0.0 in the dockerfile, like this: #Dockerfile: RUN apt-get update & apt-get install libssl1.0.0 libssl-dev I have a dockerfile that uses perl:5.22 as the base image
