Switch to debian-10 for base box image

This commit is contained in:
Dane Everitt 2021-07-11 10:44:31 -07:00
parent c2190c5f92
commit be5cb637fc
2 changed files with 5 additions and 3 deletions

2
Vagrantfile vendored
View File

@ -81,7 +81,7 @@ Vagrant.configure("2") do |config|
config.vm.define "wings", autostart: false do |wings|
wings.vm.hostname = "wings.pterodactyl.test"
wings.vm.box = "bento/ubuntu-18.04"
wings.vm.box = "generic/debian10"
wings.vm.provider "virtualbox" do |v|
v.memory = config("wings.memory", 2048)

View File

@ -2,8 +2,10 @@
export DEBIAN_FRONTEND=noninteractive
# Add Docker's GPG key and configure the repository
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
# Add support for easily fetching the latest version of Go
add-apt-repository ppa:longsleep/golang-backports