fix ssh client installation
All checks were successful
build / Dockerfile lint (push) Successful in 7s
build / build (push) Successful in 20s

This commit is contained in:
Roger Sikorski 2023-11-12 12:39:04 +01:00
parent abb31b634e
commit 506bb37589
Signed by: RogerSik
GPG Key ID: 207958C85208EAC4

View File

@ -1,8 +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-common
apk add --no-cache nano mc micro rsync ncdu git curl openssh-client
COPY ./bin/ /usr/local/bin
ENTRYPOINT ["sleep", "infinity"]