Skip to content

Commit

Permalink
Added openssh for outgoing connections.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophShyper committed Mar 23, 2020
1 parent 7733ec7 commit 7e46811
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,17 @@ RUN set -eux \
&& chmod +x /usr/bin/format-hcl /fmt.sh /terragrunt-fmt.sh \
&& apk update --no-cache \
&& apk upgrade --no-cache \
&& apk add --no-cache bash \
&& apk add --no-cache curl \
&& apk add --no-cache docker \
&& apk add --no-cache git \
&& apk add --no-cache jq \
&& apk add --no-cache make \
&& apk add --no-cache ncurses \
&& apk add --no-cache openssh \
&& apk add --no-cache openssl \
&& apk add --no-cache python3 \
&& apk add --no-cache bash \
&& apk add --no-cache curl \
&& apk add --no-cache docker \
&& apk add --no-cache zip \
&& apk add --no-cache openssl \
&& apk add --no-cache jq \
&& if [ ! -e /usr/bin/python ]; then ln -sf python3 /usr/bin/python ; fi \
&& python3 -m ensurepip \
&& rm -r /usr/lib/python*/ensurepip \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ git | Binary | For interacting with [Github](https://github.com) repositories. |
jq | Binary | For parsing JSON outputs of [awscli](https://github.com/aws/aws-cli). | https://stedolan.github.io/jq/
make | Binary | For using `Makefile` instead of scripts in deployment process. | https://www.gnu.org/software/make/
ncurses | Binary | For expanding `Makefile` with some colors. | https://invisible-island.net/ncurses/announce.html
openssh | Binary | For allowing outgoing SSH connections. | https://www.openssh.com/
openssl | Binary | For calculating BASE64SHA256 hash of Lambda packages. Assures updating Lambdas only when package hash changed. | https://github.com/openssl/openssl
ply | Python library | Dependency for [pyhcl](https://github.com/virtuald/pyhcl). | https://github.com/dabeaz/ply
pyhcl | Python library | For easily parsing of any files in HCL format, whether it's `.hcl`, `.tfvars` or `.tf`. | https://github.com/virtuald/pyhcl
Expand Down

0 comments on commit 7e46811

Please sign in to comment.