added build of ubuntu image (#7)
Some checks failed
build / build (push) Has been skipped
build / Dockerfile lint (push) Failing after 10s

Reviewed-on: #7
This commit is contained in:
2023-11-12 17:28:39 +01:00
parent e6bf1689bc
commit 7eafeef093
7 changed files with 90 additions and 10 deletions

View File

@ -0,0 +1,9 @@
# https://hub.docker.com/_/alpine
# https://endoflife.date/alpine
FROM alpine:3.18
RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]

View File

@ -0,0 +1,10 @@
# 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"]