include mongo shell client in windestimationtraining docker image

This commit is contained in:
Axel Uhl
2022-07-06 14:55:25 +02:00
parent a1cd927b85
commit 7bba0c1646
+4 -2
View File
@@ -1,9 +1,11 @@
FROM docker.sapsailing.com:443/sapjvm8:8.1.086
FROM docker.sapsailing.com/sapjvm8:8.1.086
LABEL maintainer=axel.uhl@sap.com
# Download and extract the release
WORKDIR /home/sailing
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add -
RUN echo "deb [arch=amd64,arm64] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" >/etc/apt/sources.list.d/mongodb-org-4.4.list
RUN apt-get update \
&& apt-get install -y vim
&& apt-get install -y vim mongodb-org-shell
COPY vimrc /root/.vimrc
RUN wget -O /tmp/rds.pem https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem \
&& /opt/sapjvm_8/bin/keytool -importcert -alias AWSRDS -file /tmp/rds.pem -keystore /opt/sapjvm_8/jre/lib/security/cacerts -noprompt -storepass changeit \