Skip to content
Snippets Groups Projects
Unverified Commit e2147a26 authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

Add AWS and Azure PEMs for SSL in connecting to managed databases (#15025)

parent d7146389
No related branches found
No related tags found
No related merge requests found
......@@ -3,14 +3,18 @@ FROM adoptopenjdk/openjdk11:alpine-jre
ENV FC_LANG en-US LC_CTYPE en_US.UTF-8
# dependencies
RUN apk -U upgrade && apk add --update --no-cache bash ttf-dejavu fontconfig
RUN apk -U upgrade && \
apk add --update --no-cache bash ttf-dejavu fontconfig curl java-cacerts && \
mkdir -p /app/certs && \
curl https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem -o /app/certs/rds-combined-ca-bundle.pem && \
/opt/java/openjdk/bin/keytool -noprompt -import -trustcacerts -alias aws-rds -file /app/certs/rds-combined-ca-bundle.pem -keystore /etc/ssl/certs/java/cacerts -keypass changeit -storepass changeit && \
curl https://cacerts.digicert.com/DigiCertGlobalRootG2.crt.pem -o /app/certs/DigiCertGlobalRootG2.crt.pem && \
/opt/java/openjdk/bin/keytool -noprompt -import -trustcacerts -alias azure-cert -file /app/certs/DigiCertGlobalRootG2.crt.pem -keystore /etc/ssl/certs/java/cacerts -keypass changeit -storepass changeit && \
mkdir -p /plugins && chmod a+rwx /plugins
# add Metabase jar & add our run script to the image
COPY ./metabase.jar ./run_metabase.sh /app/
# create the plugins directory, with writable permissions
RUN mkdir -p /plugins && chmod a+rwx /plugins
# expose our default runtime port
EXPOSE 3000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment