feature/add-ping-dig-and-nslookup
All checks were successful
build / Dockerfile lint (push) Successful in 6s
build / build (push) Successful in 31s

This commit is contained in:
Roger Sikorski 2023-11-14 07:49:51 +01:00
parent 94fb458645
commit 4a0cc9585e
3 changed files with 6 additions and 2 deletions

View File

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

View File

@ -3,7 +3,7 @@
FROM alpine:3.18
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
ENTRYPOINT ["sleep", "infinity"]

View File

@ -3,7 +3,8 @@
FROM ubuntu:22.04
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/*
COPY ./bin/ /usr/local/bin