From a63a385f5db172ef6934fcbcba4a5fdaca983e94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20B=C3=A9dard-Couture?= Date: Sun, 16 Jul 2023 16:20:41 -0400 Subject: [PATCH] Install base dependencies (git, wget...). It was commented by mistake in previous commit --- standalone_install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/standalone_install.sh b/standalone_install.sh index 5c7ad191a..57a7984c4 100644 --- a/standalone_install.sh +++ b/standalone_install.sh @@ -71,6 +71,11 @@ echo "Deploying Frigate stack..." 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 git clone https://github.com/blakeblackshear/frigate.git