docker-devops-helper/dockerfile/ubuntu
Roger Sikorski 94fb458645
All checks were successful
build / Dockerfile lint (push) Successful in 12s
build / build (push) Successful in 39s
fixed paths and added unp (#8)
Reviewed-on: #8
2023-11-12 17:44:32 +01:00

11 lines
233 B
Plaintext

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