Skip to content

Commit

Permalink
Add openssh-client package to kalilinux image
Browse files Browse the repository at this point in the history
  • Loading branch information
kiazhi committed Jul 23, 2020
1 parent 3bdb964 commit 36d1d4c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions release/community-stable/kalilinux/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN \
# install dependencies
&& apt-get install --no-install-recommends -y \
# required for HttpClientHandler
libcurl4 \
curl \
# required for SSL
ca-certificates \
# required for help in powershell
Expand All @@ -44,14 +44,16 @@ RUN \
locales \
# required to support NTLM for PSRemoting
gss-ntlmssp \
wget \
# required for International Components for Unicode
libicu63 \
# required for SSH
openssh-client \
# enable en_US.UTF-8 locale
&& echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
# generate locale
&& locale-gen && update-locale \
# download the powershell package
&& wget -O /tmp/powershell.deb --no-check-certificate ${PS_PACKAGE_URL} \
&& curl -sSL ${PS_PACKAGE_URL} -o /tmp/powershell.deb \
# install powershell package
&& apt-get install --no-install-recommends -y /tmp/powershell.deb \
# remove powershell package
Expand Down

0 comments on commit 36d1d4c

Please sign in to comment.