docker-devops-helper/dockerfile/ubuntu/Dockerfile

11 lines
229 B
Docker
Raw Normal View History

2023-11-12 17:17:52 +01:00
# https://hub.docker.com/_/alpine
FROM ubuntu:22.04
2023-11-12 17:26:32 +01:00
RUN apt-get update \
&& apt-get install -y nano mc micro rsync ncdu git curl \
&& rm -rf /var/lib/apt/lists/*
2023-11-12 17:17:52 +01:00
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]