Skip to content

Commit

Permalink
Vagrantfile: update to ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rossengeorgiev committed May 15, 2022
1 parent eb8930a commit 16f16ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
vb.memory = 1024
end
config.vm.define :ubuntu do |box|
box.vm.box = "bento/ubuntu-18.04"
box.vm.box = "bento/ubuntu-20.04"
box.vm.host_name = 'ubuntu.local'
box.vm.network "private_network", ip: "192.168.50.10"

Expand All @@ -17,8 +17,9 @@ Vagrant.configure("2") do |config|
box.vm.provision "shell", inline: <<-SHELL
set -x
export DEBIAN_FRONTEND='noninteractive'
sed -i 's#us.archive#archive#' /etc/apt/sources.list
apt-get -y update
apt-get -y install python-pip python-virtualenv
apt-get -y install python2 python3-pip python3-virtualenv
SHELL

box.vm.provision "shell", privileged: false, inline: <<-SHELL
Expand Down

0 comments on commit 16f16ad

Please sign in to comment.