Skip to content

Commit d0833c7

Browse files
committed
fix: Install ca-certificates package
It appears v6.15.0 of the CloudQuery CLI image no longer includes `ca-certificates`, which provides the `update-ca-certificates` command. Add it back!
1 parent 1316f69 commit d0833c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

containers/cloudquery/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ FROM ghcr.io/cloudquery/cloudquery:${CQ_CLI}
44

55
# Need to install RDS certs before running Cloudquery container due to
66
# access to the root filesystem being restricted
7-
RUN wget -O /usr/local/share/ca-certificates/global-bundle.crt -q https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem && update-ca-certificates
7+
RUN apk add --no-cache ca-certificates
8+
RUN wget -O /usr/local/share/ca-certificates/global-bundle.crt -q https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
9+
RUN update-ca-certificates

0 commit comments

Comments
 (0)