Sha256: cda060f22f6fb465875fdedf9a8c527a5d7bd4ca67ea933d8e15e9c10e4d638f
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
FROM debian:8 MAINTAINER Bob van den Heuvel <bvandenheuvel@schubergphilis.com> # Specify the ChefDK version and channel ENV CHEFDK_VERSION 0.17 ENV CHEFDK_CHANNEL stable # Currently the latest version of the plugin has been tested with Vagrant 1.8.1 ENV VAGRANT_VERSION 1.8.1 # The plugin currently depends on existence of the USER variable... ENV USER VAC # Update before all package installations RUN apt-get update -y && \ apt-get install -y build-essential liblzma-dev zlib1g-dev git openssh-client curl && \ ln -sf bash /bin/sh # Set the locale, seems to be required for all things gem RUN apt-get install -y locales && \ dpkg-reconfigure -f noninteractive tzdata && \ sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ echo 'LANG="en_US.UTF-8"'>/etc/default/locale && \ dpkg-reconfigure --frontend=noninteractive locales && \ update-locale LANG=en_US.UTF-8 # Set environment variables AFTER configuration, else breaks ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8 # # Install vagrant and the vagrant-cloudstack plugin RUN curl -L https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb > /tmp/vagrant_x86_64.deb && \ dpkg -i /tmp/vagrant_x86_64.deb && \ rm -f /tmp/vagrant_x86_64.deb && \ vagrant plugin install vagrant-cloudstack && \ vagrant plugin install vagrant-winrm # Install ChefDK RUN curl https://omnitruck.chef.io/install.sh | bash -s -- -c ${CHEFDK_CHANNEL} -P chefdk -v ${CHEFDK_VERSION} && \ echo 'eval "$(chef shell-init bash)"' >> ~/.bashrc && \ /opt/chefdk/embedded/bin/bundler config --global path vendor/bundle && \ /opt/chefdk/embedded/bin/bundler config --global bin vendor/bin && \ /opt/chefdk/embedded/bin/gem install kitchen-vagrant WORKDIR "/work" VOLUME ["/work"]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-cloudstack-1.4.0 | Docker/Dockerfile.chefdk_0_17 |