ci(docker): changes to remove cache so we are always creating a new build

This commit is contained in:
2025-07-12 21:42:25 -05:00
parent 7f867b02d6
commit f26cf6404e

View File

@@ -1,6 +1,6 @@
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 ../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 ../backend 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." 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