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

18 lines
654 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
DOCKER_IMAGE=jc21/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}"
2020-10-08 13:21:17 +02: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 15:55:06 +11:00
echo -e "${BLUE} ${GREEN}Building Frontend Complete${RESET}"
else
echo -e "${RED} docker command is not available${RESET}"
fi