From 155b5a0b2ef7aef784e2cf93da6a2a15e3a2088d Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Sat, 22 Nov 2025 23:30:16 -0600 Subject: [PATCH] somre more scripting work --- scripts/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index ebea68b..5a686b5 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -17,6 +17,7 @@ RUN_CONTAINER=false CONTAINER_NAME="rideaware-api" HOST_PORT="5000" CONTAINER_PORT="5000" +DOCKERFILE="Dockerfile" # Help function show_help() { @@ -136,9 +137,10 @@ echo -e "${BLUE}╔════════════════════ echo -e "${BLUE}║ Building Podman Image ║${NC}" echo -e "${BLUE}╚════════════════════════════════════════╝${NC}" echo -e "${YELLOW}Image: $FULL_IMAGE${NC}" +echo -e "${YELLOW}Dockerfile: $DOCKERFILE${NC}" echo "" -if ! podman build $BUILD_ARGS -f Containerfile -t "$FULL_IMAGE" .; then +if ! podman build $BUILD_ARGS -f "$DOCKERFILE" -t "$FULL_IMAGE" .; then echo -e "${RED}✗ Build failed${NC}" exit 1 fi