2023-03-08 06:22:07 +00:00
|
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
2024-01-09 23:32:12 +00:00
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
. "$DIR/../.common.sh"
|
|
|
|
|
|
|
|
|
|
DOCKER_IMAGE=nginxproxymanager/nginx-full:certbot-node
|
2023-03-08 06:22:07 +00:00
|
|
|
|
docker pull "${DOCKER_IMAGE}"
|
|
|
|
|
|
|
|
|
|
# Test
|
2024-01-09 23:32:12 +00:00
|
|
|
|
echo -e "${BLUE}❯ ${CYAN}Testing backend ...${RESET}"
|
2023-03-08 06:22:07 +00:00
|
|
|
|
docker run --rm \
|
|
|
|
|
-v "$(pwd)/backend:/app" \
|
|
|
|
|
-v "$(pwd)/global:/app/global" \
|
|
|
|
|
-w /app \
|
|
|
|
|
"${DOCKER_IMAGE}" \
|
|
|
|
|
sh -c 'yarn install && yarn eslint . && rm -rf node_modules'
|
2024-01-09 23:32:12 +00:00
|
|
|
|
echo -e "${BLUE}❯ ${GREEN}Testing Complete${RESET}"
|
2023-03-08 06:22:07 +00:00
|
|
|
|
|
|
|
|
|
# Build
|
2024-01-09 23:32:12 +00:00
|
|
|
|
echo -e "${BLUE}❯ ${CYAN}Building ...${RESET}"
|
|
|
|
|
docker build --pull --no-cache --compress \
|
2023-03-08 06:22:07 +00:00
|
|
|
|
-t "${IMAGE}:ci-${BUILD_NUMBER}" \
|
|
|
|
|
-f docker/Dockerfile \
|
2024-01-09 23:32:12 +00:00
|
|
|
|
--progress=plain \
|
2023-03-08 06:22:07 +00:00
|
|
|
|
--build-arg TARGETPLATFORM=linux/amd64 \
|
|
|
|
|
--build-arg BUILDPLATFORM=linux/amd64 \
|
|
|
|
|
--build-arg BUILD_VERSION="${BUILD_VERSION}" \
|
|
|
|
|
--build-arg BUILD_COMMIT="${BUILD_COMMIT}" \
|
|
|
|
|
--build-arg BUILD_DATE="$(date '+%Y-%m-%d %T %Z')" \
|
|
|
|
|
.
|
2024-01-09 23:32:12 +00:00
|
|
|
|
echo -e "${BLUE}❯ ${GREEN}Building Complete${RESET}"
|