docker-devops-helper/dockerfile/ubuntu/Dockerfile
Roger Sikorski c76d4dd11b
Some checks failed
build / build (push) Successful in 1m37s
build / Dockerfile lint (push) Failing after 8s
using apt-get instead apt like hadolint recommend it
2023-11-12 17:20:50 +01:00

10 lines
194 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
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]