From 7bb7df788e70b13b4d65864f7f6352c3d47b1632 Mon Sep 17 00:00:00 2001 From: Cowch Date: Sat, 12 Jul 2025 21:50:58 -0500 Subject: [PATCH] fix(docker): corrections to the docker script as we run it in the root we dont want to have it go up 2 levels only be at the same level --- scripts/dockerBuild.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dockerBuild.ps1 b/scripts/dockerBuild.ps1 index 875da0e..9084016 100644 --- a/scripts/dockerBuild.ps1 +++ b/scripts/dockerBuild.ps1 @@ -1,6 +1,6 @@ Write-Host "Building the docker images for front and backend" -docker build -t logistics_support_tool:frontend-latest -f ../frontend/Dockerfile --no-cache ../frontend -docker build -t logistics_support_tool:backend-latest -f ../backend/Dockerfile --no-cache ../backend +docker build -t logistics_support_tool:frontend-latest -f ./frontend/Dockerfile --no-cache ./frontend +docker build -t logistics_support_tool:backend-latest -f ./backend/Dockerfile --no-cache ./backend Write-Host "Tagging the builds with latest this is for testing test basically." docker tag logistics_support_tool:frontend-latest git.tuffraid.net/cowch/logistics_support_tool:frontend-latest