feature/add-ping-dig-and-nslookup #9

Merged
RogerSik merged 1 commits from feature/add-ping-dig-and-nslookup into main 2023-11-14 07:52:18 +01:00
3 changed files with 6 additions and 2 deletions

View File

@ -8,6 +8,9 @@ Installed tools:
- rsync - rsync
- mc - mc
- nano - nano
- ping
- dig
- nslookup
- ubuntu images - ubuntu images
- unp - unp

View File

@ -3,7 +3,7 @@
FROM alpine:3.18 FROM alpine:3.18
RUN apk update && \ RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client apk add --no-cache nano mc micro rsync ncdu git curl openssh-client iputils bind-tools
COPY ./bin/ /usr/local/bin COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"] ENTRYPOINT ["sleep", "infinity"]

View File

@ -3,7 +3,8 @@
FROM ubuntu:22.04 FROM ubuntu:22.04
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y nano mc micro rsync ncdu git curl unp \ && apt-get full-upgrade -y \
&& apt-get install -y nano mc micro rsync ncdu git curl unp iputils-ping dnsutils \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY ./bin/ /usr/local/bin COPY ./bin/ /usr/local/bin