From 47c49cc5b83a09960d104b2559647fad381c9588 Mon Sep 17 00:00:00 2001 From: Giuseppe Morelli Date: Tue, 19 Nov 2024 17:12:01 +0100 Subject: [PATCH] 8.2-debian install openssh-client and sudo --- php-8.2-debian/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/php-8.2-debian/Dockerfile b/php-8.2-debian/Dockerfile index 9e7da0b..12d3aa0 100644 --- a/php-8.2-debian/Dockerfile +++ b/php-8.2-debian/Dockerfile @@ -9,7 +9,11 @@ RUN apt-get -y update \ apt-transport-https \ ca-certificates \ wget \ - curl + curl \ + openssh-client \ + sudo + +RUN eval "$(ssh-agent -s)" # RUN apt-get dist-upgrade -y