entrypoint.sh 532 B

12345678910111213
  1. #!/bin/sh
  2. set -e
  3. # Create temporary ssl certificate
  4. echo "[$(date -R)] [ENTRYPOINT] Create selfsigned certificate"
  5. export RANDFILE=/tmp/ssl/.rnd
  6. mkdir -p /tmp/ssl
  7. openssl ecparam -genkey -name prime256v1 -out /tmp/ssl/localhost.key
  8. openssl req -new -subj "/O=Container Security/CN=$(hostname -s)" -key /tmp/ssl/localhost.key -out /tmp/ssl/localhost.csr
  9. openssl x509 -req -days 3650 -sha256 -in /tmp/ssl/localhost.csr -signkey /tmp/ssl/localhost.key -out /tmp/ssl/localhost.pem > /dev/null 2>&1
  10. echo ""
  11. exec /usr/local/bin/gomicro