From patchwork Wed Apr 15 16:48:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Preston X-Patchwork-Id: 1271335 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=permerror header.from=codethink.co.uk Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 492Sx959Xlz9s71 for ; Thu, 16 Apr 2020 02:49:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 0889E204FC; Wed, 15 Apr 2020 16:48:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qzTaoKbH-dEC; Wed, 15 Apr 2020 16:48:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1E24F20407; Wed, 15 Apr 2020 16:48:57 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id F23F21BF346 for ; Wed, 15 Apr 2020 16:48:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EF0A587824 for ; Wed, 15 Apr 2020 16:48:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IAXwFKOWGh83 for ; Wed, 15 Apr 2020 16:48:55 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from imap3.hz.codethink.co.uk (imap3.hz.codethink.co.uk [176.9.8.87]) by hemlock.osuosl.org (Postfix) with ESMTPS id 29E6E8739A for ; Wed, 15 Apr 2020 16:48:55 +0000 (UTC) Received: from [167.98.27.226] (helo=ts007-build.ts005.codethink.co.uk) by imap3.hz.codethink.co.uk with esmtpsa (Exim 4.92 #3 (Debian)) id 1jOlDY-0005f3-5q; Wed, 15 Apr 2020 17:48:52 +0100 From: Thomas Preston To: buildroot@buildroot.org Date: Wed, 15 Apr 2020 17:48:43 +0100 Message-Id: <20200415164846.122126-3-thomas.preston@codethink.co.uk> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200415164846.122126-1-thomas.preston@codethink.co.uk> References: <20200415164846.122126-1-thomas.preston@codethink.co.uk> MIME-Version: 1.0 Subject: [Buildroot] [PATCH v2 2/5] support/docker: Add openssh-server X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: unixmania@gmail.com, michael.drake@codethink.co.uk, yann.morin.1998@free.fr, Thomas Preston Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Install the openssh-server package into the test container. This package, as well as its dependency openssh-client, is required to test SCP and SFTP download methods on the localhost, as if these tools were already installed on the user's machine. Signed-off-by: Thomas Preston --- support/docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile index be795a18b4..f44be230e6 100644 --- a/support/docker/Dockerfile +++ b/support/docker/Dockerfile @@ -36,6 +36,7 @@ RUN apt-get install -y --no-install-recommends \ libncurses5-dev \ locales \ mercurial \ + openssh-server \ python-flake8 \ python-nose2 \ python-pexpect \