File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ Vagrant.configure(2) do |config|
12
12
13
13
# Every Vagrant development environment requires a box. You can search for
14
14
# boxes at https://atlas.hashicorp.com/search.
15
- config . vm . box = "wagtail/buster64 "
16
- config . vm . box_version = "~> 1 .0"
15
+ config . vm . box = "ubuntu/jammy64 "
16
+ config . vm . box_version = "~> 20220810.0 .0"
17
17
18
18
# Disable automatic box update checking. If you disable this, then
19
19
# boxes will only be checked for updates when the user runs
Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ PYTHON=$VIRTUALENV_DIR/bin/python
10
10
PIP=$VIRTUALENV_DIR /bin/pip
11
11
12
12
13
+ # Update APT database
14
+ apt-get update -y
15
+
16
+ apt install -y python3-pip
17
+ pip3 install virtualenv
18
+
13
19
# Virtualenv setup for project
14
20
su - $DEV_USER -c " virtualenv --python=python3 $VIRTUALENV_DIR "
15
21
# Replace previous line with this if you are using Python 2
You can’t perform that action at this time.
0 commit comments