Sha256: fbf1b1b5b86263cef1982f47b9c09acf1772ee53cb45bb60d2235cabf85ca050
Contents?: true
Size: 734 Bytes
Versions: 4
Compression:
Stored size: 734 Bytes
Contents
#!/bin/bash set -x export DEBIAN_FRONTEND=noninteractive apt-get update apt-get --yes upgrade apt-get --yes install apt-transport-https echo "export EDITOR=vim" >> /home/vagrant/.bashrc # Install docker curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" apt-get install -y docker-ce docker-ce-cli containerd.io usermod -aG docker vagrant # Install make apt-get install -y make # install requirements for ruby snap install ruby --channel=2.6/stable --classic su vagrant -c 'gem install bundler:2.1.4' apt install -y gcc g++ libsnappy-dev libicu-dev zlib1g-dev cmake pkg-config libssl-dev
Version data entries
4 entries across 4 versions & 1 rubygems