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
This commit is contained in:
2025-07-12 21:50:58 -05:00
parent f26cf6404e
commit 7bb7df788e

View File

@@ -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