Browse Source

Add ssh client

So we can clone terraform modules from git over ssh
pull/69/head
Piotr Komborski 7 years ago
parent
commit
f411b0b16f
No known key found for this signature in database GPG Key ID: 66A31A11D9693D9D
  1. 5
      Dockerfile

5
Dockerfile

@ -13,8 +13,9 @@ FROM alpine:3.7
RUN apk -U add \ RUN apk -U add \
ca-certificates \ ca-certificates \
git \ git \
wget && \ wget \
rm -rf /var/cache/apk/* openssh-client && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.11.7 ENV TERRAFORM_VERSION 0.11.7
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \ RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \

Loading…
Cancel
Save