Skip to content

Commit 013f293

Browse files
authored
Merge pull request #51 from bashbang/main
Add mongodbsh
2 parents ac33a0c + 1944155 commit 013f293

1 file changed

Lines changed: 26 additions & 24 deletions

File tree

utility-pod/Dockerfile

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,35 @@ RUN apt-get -y update && \
77

88
ARG DEBIAN_FRONTEND=noninteractive
99
RUN apt-get -y install \
10-
build-essential \
11-
curl \
12-
dnsutils \
13-
git \
14-
htop \
15-
iperf \
16-
iputils-ping \
17-
jq \
18-
lynx \
19-
mysql-client \
20-
nmap \
21-
postgresql \
22-
postgresql-contrib \
23-
postgresql-client \
24-
procps \
25-
rsync \
26-
telnet \
27-
traceroute \
28-
unzip \
29-
vim \
30-
wget \
31-
yq
10+
build-essential \
11+
curl \
12+
dnsutils \
13+
git \
14+
htop \
15+
iperf \
16+
iputils-ping \
17+
jq \
18+
lynx \
19+
mysql-client \
20+
nmap \
21+
postgresql \
22+
postgresql-contrib \
23+
postgresql-client \
24+
procps \
25+
rsync \
26+
telnet \
27+
traceroute \
28+
unzip \
29+
vim \
30+
wget \
31+
yq
3232

3333
RUN curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor
3434
RUN echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-8.0.list
35-
RUN apt-get -y install mongodb-mongosh
36-
RUN rm -rf /var/lib/apt/lists/*
35+
RUN apt-get -y update && \
36+
apt-get -y install \
37+
mongodb-mongosh && \
38+
rm -rf /var/lib/apt/lists/*
3739

3840
# A writeable folder for OCP deployments that are non-root based runtimes
3941
RUN mkdir /test && \

0 commit comments

Comments
 (0)