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
|
|
|
|
|
2022-01-11 01:52:25 +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}"
|
2020-10-08 11:21:17 +00:00
|
|
|
|
docker run --rm -e CI=true -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
|