File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,10 +28,12 @@ COPY --from=composer:latest /usr/bin/composer /usr/local/bin/
2828COPY --from=amazeeio/envplate:v1.0.3 /usr/local/bin/ep /usr/local/bin/ep
2929
3030# Fetch the required certificates for the Azure MySQL service and combine them
31+ ENV AZURE_SQL_SSL_CA_PATH=/usr/local/share/ca-certificates/DigiCertGlobalRootCA.crt.pem
32+ RUN mkdir -p /usr/local/share/ca-certificates && \
33+ wget https://dl.cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem -O $AZURE_SQL_SSL_CA_PATH
34+
3135ENV AZURE_SQL_SSL_CA_PATH=/usr/local/share/ca-certificates/BaltimoreCyberTrustRoot.crt.pem
32- RUN \
33- mkdir -p /usr/local/share/ca-certificates && \
34- wget https://www.digicert.com/CACerts/BaltimoreCyberTrustRoot.crt.pem -O /tmp/baltimore.crt.pem && \
36+ RUN wget https://www.digicert.com/CACerts/BaltimoreCyberTrustRoot.crt.pem -O /tmp/baltimore.crt.pem && \
3537 wget https://cacerts.digicert.com/DigiCertGlobalRootG2.crt.pem -O /tmp/g2.crt.pem && \
3638 cat /tmp/g2.crt.pem >> $AZURE_SQL_SSL_CA_PATH && \
3739 cat /tmp/baltimore.crt.pem >> $AZURE_SQL_SSL_CA_PATH && \
Original file line number Diff line number Diff line change 11command :
22 # MariaDB cli requires valid certificate by default,
33 # which we don't have for local environment.
4+ site :
5+ install :
6+ options :
7+ extra : " --skip-ssl"
48 sql :
59 query :
610 options :
You can’t perform that action at this time.
0 commit comments