WIP: trying mailserver

This commit is contained in:
2022-11-05 15:00:31 +01:00
parent b7f215d3bf
commit f95536338b
5 changed files with 93 additions and 15 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alpine
MAINTAINER Lieuwe Leene
ARG SSL_ALGO=secp521r1
RUN apk update && \
apk add --no-cache openssl && \
rm -rf /var/cache/apk/*
COPY ./mail/certs /certs
RUN openssl ecparam -name ${SSL_ALGO} -genkey | openssl pkey -out /certs/ecprivkey.pem && \
openssl pkey -in /certs/ecprivkey.pem -pubout -out /certs/ecpubkey.pem