docker-devops-helper/dockerfile/ubuntu/Dockerfile
Roger Sikorski 7eafeef093
Some checks failed
build / build (push) Has been skipped
build / Dockerfile lint (push) Failing after 10s
added build of ubuntu image (#7)
Reviewed-on: #7
2023-11-12 17:28:39 +01:00

11 lines
229 B
Docker

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