16 lines
294 B
Docker
16 lines
294 B
Docker
|
FROM ubuntu
|
||
|
RUN apt update \
|
||
|
&& apt install -y \
|
||
|
openssl \
|
||
|
curl \
|
||
|
jq \
|
||
|
yq \
|
||
|
dnsutils \
|
||
|
iputils-ping \
|
||
|
traceroute \
|
||
|
iproute2 \
|
||
|
openssh-client \
|
||
|
rsync \
|
||
|
postgresql-client \
|
||
|
nano
|
||
|
RUN mkdir /root/.ssh
|