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