diff --git a/.dockerignore b/.dockerignore index 51a5557c62..e61253b7e3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,3 @@ .git docker-compose.yml node_modules -artifact.json -finnbuild.json diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 1fccf7b811..0000000000 --- a/Vagrantfile +++ /dev/null @@ -1,20 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! -VAGRANTFILE_API_VERSION = "2" - -Vagrant.require_version ">= 1.7.0" - -Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.provider "virtualbox" do |v| - v.memory = 2048 - v.cpus = 2 - end - - config.vm.box = "boxcutter/ubuntu1410-docker" - - config.vm.network "private_network", ip: "192.168.12.34" - - config.vm.provision "shell", inline: "/vagrant/helpers/install.sh" -end \ No newline at end of file diff --git a/helpers/install.sh b/helpers/install.sh deleted file mode 100644 index dce90c55aa..0000000000 --- a/helpers/install.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - -set -e - -echo "" -sudo apt-get install unzip - -curl -L -O https://dl.bintray.com/mitchellh/consul/0.5.2_linux_amd64.zip - -unzip 0.5.2_linux_amd64.zip -d /usr/bin - -consul agent -data-dir=/tmp/consul -dc=oslo0 & -consul join dev-mod2.finntech.no -consul members \ No newline at end of file