We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 863f14b commit 772ac48Copy full SHA for 772ac48
1 file changed
apps/api/Dockerfile.multistage
@@ -84,8 +84,9 @@ WORKDIR /app
84
RUN chown nestjs:nestjs /app
85
86
# Install runtime dependencies + AWS RDS CA certificate bundle
87
-RUN apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
88
- && wget -q -O /usr/local/share/aws-rds-ca-bundle.pem https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
+RUN apt-get update && apt-get install -y --no-install-recommends wget ca-certificates \
+ && wget -q -O /usr/local/share/aws-rds-ca-bundle.pem https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem \
89
+ && apt-get clean && rm -rf /var/lib/apt/lists/*
90
91
ENV NODE_EXTRA_CA_CERTS=/usr/local/share/aws-rds-ca-bundle.pem
92
0 commit comments