Files
nginx-proxy-manager/scripts/ci/frontend-build
T

26 lines
737 B
Bash
Raw 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" \
-v "$(pwd)/global:/app/global" \
2024-05-21 12:53:07 +10:00
-w /app/frontend "${DOCKER_IMAGE}" \
2024-01-10 09:32:12 +10:00
sh -c "yarn install && yarn build && yarn build && chown -R $(id -u):$(id -g) /app/frontend"
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