File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,33 +7,35 @@ RUN apt-get -y update && \
77
88ARG DEBIAN_FRONTEND=noninteractive
99RUN 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
3333RUN curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor
3434RUN 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
3941RUN mkdir /test && \
You can’t perform that action at this time.
0 commit comments