2021-03-12 15:18:24 -05:00
|
|
|
#!/bin/bash
|
|
|
|
# This file is part of Moonfire NVR, a security camera network video recorder.
|
|
|
|
# Copyright (C) 2021 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
|
|
|
|
# SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception.
|
|
|
|
|
|
|
|
# Build the "build-ui" target. See Dockerfile.
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
set -o pipefail
|
|
|
|
set -o xtrace
|
|
|
|
|
|
|
|
mkdir /docker-build-debug/build-ui
|
|
|
|
exec > >(tee -i /docker-build-debug/build-ui/output) 2>&1
|
|
|
|
|
2021-03-27 19:34:14 -04:00
|
|
|
date
|
|
|
|
uname -a
|
2021-03-12 15:18:24 -05:00
|
|
|
time npm ci
|
|
|
|
time npm run build
|
2021-03-27 19:34:14 -04:00
|
|
|
|
2021-03-12 15:18:24 -05:00
|
|
|
ls -laFR /var/lib/moonfire-nvr/src/ui/node_modules \
|
|
|
|
> /docker-build-debug/build-ui/node_modules-after
|
2021-03-27 19:34:14 -04:00
|
|
|
date
|