Skip to content

Commit d143d57

Browse files
committed
Update vagrant setup for Ubuntu 24
1 parent ed1da25 commit d143d57

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Vagrantfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
Vagrant.configure("2") do |config|
55

6-
config.vm.box = "bento/ubuntu-22.04"
6+
config.vm.box = 'bento/ubuntu-24.04'
7+
if RUBY_PLATFORM.include?('darwin') && RUBY_PLATFORM.include?('arm64')
8+
# Apple Silicon/M processor
9+
config.vm.box = 'gutehall/ubuntu24-04'
10+
end
711

812
config.vm.synced_folder ".", "/home/vagrant/python-opencage-geocoder"
913

0 commit comments

Comments
 (0)