AWS SES Error: x509: certificate signed by unknown authority

后端 未结 1 1646
梦谈多话
梦谈多话 2020-12-21 17:45

I\'ve been banging my head against the table with this one for a while now. I\'m. I\'ve successfully sent emails locally using an AWS access key and secret that has full acc

相关标签:
1条回答
  • 2020-12-21 18:30

    If you are using alpine docker image for example:

    FROM alpine:3.6 as alpine
    
    RUN apk add -U --no-cache ca-certificates
    
    FROM scratch
    COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
    

    After adding root certificates ca-certificates, it will be working fine.

    0 讨论(0)
提交回复
热议问题