Sha256: 9e01703f8d7a8fe85ff3680209b5d5f78e646819096f6126325c50229e969df9
Contents?: true
Size: 640 Bytes
Versions: 4
Compression:
Stored size: 640 Bytes
Contents
FROM ruby:2.4.1 RUN apt-get update && apt-get install -y zip # Install Terraform RUN curl https://releases.hashicorp.com/terraform/0.10.5/terraform_0.10.5_linux_amd64.zip?_ga=2.49593953.619315674.1505216069-1504763789.1498760046 -o terraform.zip RUN unzip terraform -d /usr/bin/terraform && chmod +x /usr/bin/terraform # Install BOSH v2 RUN curl https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-2.0.31-linux-amd64 -o /usr/bin/bosh && chmod +x /usr/bin/bosh # Copy kite source, build and install the gem , egnerate a test cloud skeleton COPY . /kite WORKDIR /kite RUN bundle && rake build && gem install pkg/kite-* RUN kite new test
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
kite-0.1.0 | Dockerfile |
kite-0.0.9 | Dockerfile |
kite-0.0.8 | Dockerfile |
kite-0.0.7 | Dockerfile |