12 lines
286 B
Plaintext
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"]
|