Files

25 lines
754 B
Bash
Raw Permalink Normal View History

2020-02-19 15:55:06 +11:00
#!/bin/bash -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
. "$DIR/../.common.sh"
2020-02-19 15:55:06 +11:00
2024-01-10 09:32:12 +10:00
DOCKER_IMAGE=nginxproxymanager/nginx-full:certbot-node
2020-02-19 15:55:06 +11:00
# Ensure docker exists
if hash docker 2>/dev/null; then
2020-06-03 10:30:29 +10:00
docker pull "${DOCKER_IMAGE}"
cd "${DIR}/../.."
2020-02-19 15:55:06 +11:00
echo -e "${BLUE} ${CYAN}Building Frontend ...${RESET}"
2024-01-10 09:32:12 +10:00
docker run --rm \
-e CI=true \
-e NODE_OPTIONS=--openssl-legacy-provider \
-v "$(pwd)/frontend:/app/frontend" \
2024-05-21 12:53:07 +10:00
-w /app/frontend "${DOCKER_IMAGE}" \
2026-01-13 22:55:19 +10:00
sh -c "yarn install && yarn lint && yarn locale-compile && yarn vitest run --no-color && yarn build && chown -R $(id -u):$(id -g) /app/frontend"
2024-01-10 09:32:12 +10:00
2020-02-19 15:55:06 +11:00
echo -e "${BLUE} ${GREEN}Building Frontend Complete${RESET}"
else
echo -e "${RED} docker command is not available${RESET}"
fi