docker-devops-helper/dockerfile/ubuntu/Dockerfile
Roger Sikorski d8644e1fa6
Some checks failed
build / build (push) Successful in 1m30s
build / Dockerfile lint (push) Failing after 7s
added build of ubuntu image
2023-11-12 17:17:52 +01:00

10 lines
186 B
Docker

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