From 308ac05fe66ddaeac4e4725cd7711b976981a6f3 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.cyberia@doesthisthing.work> Date: Tue, 20 Jul 2021 01:52:17 +0200 Subject: [PATCH] Add openssh-cient to Dockerfile for ssh-keyscan --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 62e0e7d..4d74449 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,8 @@ RUN pipenv install --deploy --verbose FROM python:3.8-alpine -RUN apk add --no-cache libpq libstdc++ libjpeg virt-install libvirt-client cloud-utils +RUN apk add --no-cache libpq libstdc++ libjpeg virt-install libvirt-client \ + cloud-utils openssh-client COPY . /app/code/ WORKDIR /app/code