Created
November 7, 2020 07:54
-
-
Save a4099181/3791aa567edb982b613581055e6fa1b4 to your computer and use it in GitHub Desktop.
OpenSSL Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine | |
VOLUME [ "/demoCA" ] | |
RUN apk update && \ | |
apk add --no-cache openssl git perl && \ | |
rm -rf /var/cache/apk/* | |
RUN ln -s /etc/ssl/misc/CA.pl /usr/bin/ca |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment