add -y to apt update

avoids needless interruption for the user
This commit is contained in:
Arman The Parman 2024-11-18 22:07:55 +11:00 committed by rockstardev
parent a9f6b78d9f
commit bbbd921379

View File

@ -9,7 +9,7 @@ export BTCPAYGEN_REVERSEPROXY="nginx"
export BTCPAY_ENABLE_SSH=true
# Upgrade OS packages to latest
apt update && apt upgrade -y && apt autoremove
apt update -y && apt upgrade -y && apt autoremove
# Install Docker
apt install apt-transport-https ca-certificates curl gnupg lsb-release -y