File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ RUN apt-get update && \
2929 apt-get clean && \
3030 rm -rf /var/lib/apt/lists/*
3131
32+ # Download AWS RDS CA bundle and update system CA store
33+ RUN curl -sS https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem \
34+ -o /usr/local/share/ca-certificates/aws-rds.crt \
35+ && update-ca-certificates
36+
3237# Create necessary directories
3338RUN mkdir -p /etc/supervisor/conf.d /var/log/supervisor /enrichment /bootstrap
3439
Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ RUN apt-get update && apt-get install -y \
1818 certbot \
1919 openssl \
2020 traceroute \
21+ ca-certificates \
2122 && rm -rf /var/lib/apt/lists/*
2223
24+ # Download AWS RDS CA bundle and update system CA store
25+ RUN curl -sS https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem \
26+ -o /usr/local/share/ca-certificates/aws-rds.crt \
27+ && update-ca-certificates
28+
2329# Copy Vector from vector image
2430COPY --from=vector --chmod=755 /usr/bin/vector /usr/local/bin/vector
2531COPY --from=vector /etc/vector /etc/vector
You can’t perform that action at this time.
0 commit comments