Install base dependencies (git, wget...). It was commented by mistake in previous commit

This commit is contained in:
Rémi Bédard-Couture 2023-07-16 16:20:41 -04:00
parent a9cb1f4690
commit a63a385f5d

View File

@ -71,6 +71,11 @@ echo "Deploying Frigate stack..."
cd /opt cd /opt
apt update
apt upgrade -y
#I tried to install all the dependencies at the beginning, but it induced an error when building nginx, so I kept them in the same order of the Dockerfile
apt install -y git automake build-essential wget xz-utils
#Pull Frigate from repo #Pull Frigate from repo
git clone https://github.com/blakeblackshear/frigate.git git clone https://github.com/blakeblackshear/frigate.git