Fix health check warnings
This commit is contained in:
parent
fa3cb218a9
commit
6c8502f2d1
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ pkgs.mkShell {
|
|||
local IMAGE_NAME="dish-planner"
|
||||
|
||||
echo "🔨 Building production image..."
|
||||
podman build -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
|
||||
podman build --format docker -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
|
||||
|
||||
echo "✅ Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}"
|
||||
echo "Run 'prod-push' to push to Codeberg"
|
||||
|
|
@ -119,7 +119,7 @@ pkgs.mkShell {
|
|||
local IMAGE_NAME="dish-planner"
|
||||
|
||||
echo "🔨 Building production image (no cache)..."
|
||||
podman build --no-cache -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
|
||||
podman build --format docker --no-cache -f Dockerfile -t ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG} .
|
||||
|
||||
echo "✅ Build complete: ''${REGISTRY}/''${NAMESPACE}/''${IMAGE_NAME}:''${TAG}"
|
||||
echo "Run 'prod-push' to push to Codeberg"
|
||||
|
|
|
|||
Loading…
Reference in a new issue