From f2f93ba2d5760426c5af21407a77fb5b1bae8c68 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Tue, 2 Jul 2024 13:05:47 -0500 Subject: [PATCH] Add openssh to Ubuntu 22.04 automatus docker file --- Dockerfiles/test_suite-ubt22 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfiles/test_suite-ubt22 b/Dockerfiles/test_suite-ubt22 index e53ec04776fd..9d58e0faf120 100644 --- a/Dockerfiles/test_suite-ubt22 +++ b/Dockerfiles/test_suite-ubt22 @@ -6,10 +6,11 @@ ENV BUILD_JOBS 4 RUN true \ && apt-get -qq update \ - && apt-get -qq install cmake ninja-build libopenscap8 libxml2-utils xsltproc python3-jinja2 python3-yaml \ + && apt-get -qq install cmake ninja-build libopenscap8 libxml2-utils xsltproc python3-jinja2 python3-yaml openssh-server \ && mkdir -p /home/$OSCAP_USERNAME \ && rm -rf /usr/share/doc /usr/share/doc-base \ /usr/share/man /usr/share/locale /usr/share/zoneinfo \ + && service ssh start \ && true WORKDIR /home/$OSCAP_USERNAME