Added mongodb command line client

This commit is contained in:
cytopia
2022-04-03 14:50:58 +02:00
parent 17b98f785c
commit 573d5fa2e2
15 changed files with 70 additions and 213 deletions

View File

@@ -99,6 +99,7 @@ RUN set -eux \
make \
moreutils \
mariadb-client \
mongo-tools \
mupdf \
mupdf-tools \
nano \
@@ -135,20 +136,6 @@ RUN set -eux \
&& (find /usr/local/sbin -type f -print0 | xargs -n1 -0 -P$(getconf _NPROCESSORS_ONLN) strip --strip-all -p 2>/dev/null || true)
###
### Instal Architecture Dependent software
###
#RUN set -eux \
# && if [ "${ARCH}" = "linux/amd64" ]; then \
# DEBIAN_FRONTEND=noninteractive apt-get update \
# && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends --no-install-suggests \
# mongodb-org-shell \
# mongodb-org-tools; \
# fi \
# && DEBIAN_FRONTEND=noninteractive apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false apt-utils \
# && rm -rf /var/lib/apt/lists/*
###
### Install custom software
###