test(docker): changes to make all latest now instead of 2 apps

This commit is contained in:
2025-07-20 08:57:55 -05:00
parent 7e9401d8bb
commit 5a95bf3ef0

View File

@@ -1,10 +1,10 @@
Write-Host "Building the docker images for front and backend" 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: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:latest -f ./backend/Dockerfile --no-cache ./backend
Write-Host "Tagging the builds with latest this is for testing test basically." 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 #docker tag logistics_support_tool:frontend-latest git.tuffraid.net/cowch/logistics_support_tool:frontend-latest
docker tag logistics_support_tool:backend-latest git.tuffraid.net/cowch/logistics_support_tool:latest docker tag logistics_support_tool:latest git.tuffraid.net/cowch/logistics_support_tool:latest
# docker build -t logistics_support_tool:frontend-latest --no-cache . # docker build -t logistics_support_tool:frontend-latest --no-cache .
Write-Host "Push both builds to our gitea server." Write-Host "Push both builds to our gitea server."