We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0d34c commit 02e07f3Copy full SHA for 02e07f3
1 file changed
Dockerfile
@@ -8,7 +8,9 @@ RUN set -ex \
8
&& npm install --production \
9
# Generate SSL-certificate (for HTTPS)
10
&& apk --no-cache add openssl \
11
- && sh generate-cert.sh \
+ && openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes -keyout privkey.pem -out fullchain.pem \
12
+ -subj "/C=GB/ST=London/L=London/O=Mendhak/CN=Echo" \
13
+ -addext "subjectAltName=DNS:my.example.com,DNS:my.example.net,IP:192.168.50.108" \
14
&& apk del openssl \
15
&& rm -rf /var/cache/apk/* \
16
# Delete unnecessary files
0 commit comments