removed unp from alpine; because it doesn't exist
All checks were successful
build / Dockerfile lint (push) Successful in 13s
build / build (push) Successful in 47s

This commit is contained in:
Roger Sikorski 2023-11-12 17:42:37 +01:00
parent df35eb7443
commit 17fbe6fb9c
Signed by: RogerSik
GPG Key ID: 207958C85208EAC4
2 changed files with 7 additions and 5 deletions

View File

@ -4,10 +4,12 @@ This image is builded to do easier maintaince tasks. Example editing config file
Installed tools:
- rsync
- mc
- nano
- unp
- all images (alpine and ubuntu)
- rsync
- mc
- nano
- ubuntu images
- unp
## Ubuntu and Alpine Images

View File

@ -3,7 +3,7 @@
FROM alpine:3.18
RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client unp
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]