docker-devops-helper/dockerfile/ubuntu
Roger Sikorski 4a0cc9585e
All checks were successful
build / Dockerfile lint (push) Successful in 6s
build / build (push) Successful in 31s
feature/add-ping-dig-and-nslookup
2023-11-14 07:49:51 +01:00

12 lines
286 B
Plaintext

# https://hub.docker.com/_/alpine
FROM ubuntu:22.04
RUN apt-get update \
&& 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
ENTRYPOINT ["sleep", "infinity"]