From 506bb375891468d9d31e0ddcfe0335900ff08c51 Mon Sep 17 00:00:00 2001 From: Roger Sikorski Date: Sun, 12 Nov 2023 12:39:04 +0100 Subject: [PATCH] fix ssh client installation --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d6e9d1..28eba9b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]