Skip to content

Commit ecb426c

Browse files
committed
Simplify Vagrantfile again
1 parent d3be66d commit ecb426c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Vagrantfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ Vagrant.configure("2") do |config|
55
config.vm.box = "bento/ubuntu-18.04"
66
config.vm.provision :docker
77
config.vm.provision :shell, inline: <<-EOF
8-
script=/usr/local/bin/build-image
9-
echo '#!/bin/sh' > $script
10-
echo 'docker build -t fkrull/multi-python /vagrant' >> $script
11-
chmod +x $script
8+
echo "cd /vagrant" >> ~vagrant/.profile
129
EOF
1310
end

0 commit comments

Comments
 (0)