Alpine Linux v3.6 with LibreSSL v2.5.5 (and ca-certificates) installed at /usr/bin/openssl. 11MB.
1.6K
A handy basic image comprising of;
Use this command to pull the image manually before runtime:
sudo docker pull itsthenetwork/alpine-libressl:latest
This command will start the container and calculate and display the md5 checksum of the test.txt file, which is located in the present working directory. The container will be automatically removed when the command completes.
sudo docker run -it --name=libressl --rm -v $PWD:/tmp itsthenetwork/alpine-libressl md5 /tmp/test.txt
The Dockerfile used to create this image is available at the root of the container's file system.
If you wanted to install additional packages and build your own image based upon this one you'd start your Dockerfile like this:
FROM itsthenetwork/alpine-libressl:latest
RUN apk --update --verbose --no-cache add package_name package_name
...
Content type
Image
Digest
Size
4.8 MB
Last updated
almost 9 years ago
docker pull itsthenetwork/alpine-libressl