TechEmpower / FrameworkBenchmarks

Source for the TechEmpower Framework Benchmarks project
https://www.techempower.com/benchmarks/
Other
7.55k stars 1.94k forks source link

WARNING : apt does not have a stable CLI interface. #4088

Open matbrgz opened 5 years ago

matbrgz commented 5 years ago

OS (Please include kernel version)

Ubuntu 16.04 on Vagrant

Expected Behavior

No WARNING message

Actual Behavior

WARNING : apt does not have a stable CLI interface. Use with caution in scripts.

Steps to reproduce behavior

cd deployment/vagrant vagrant up

Other details and logs

Acording to https://askubuntu.com/questions/990823/apt-gives-unstable-cli-interface-warning apt isnt recommended for scripts.

matbrgz commented 5 years ago

Using:

  echo "Installing Docker"
  sudo apt-get -yqq update && sudo apt-get -yqq upgrade
  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
  sudo apt-get -yqq update
  sudo apt-get -yqq install docker-ce
  sudo usermod -aG docker vagrant

in https://github.com/TechEmpower/FrameworkBenchmarks/blob/master/deployment/vagrant/bootstrap.sh#L11 works for me.

joanhey commented 5 years ago

Related to #3692