Fix: Add pull_policy to docker-compose.dev.yml to force rebuild

Added pull_policy: build to prevent Docker from using cached images
with old Rust version. This ensures the build uses Rust 1.83 as specified
in Dockerfile.dev.
This commit is contained in:
goose 2026-02-15 11:51:22 -03:00
parent 39f9ff38d0
commit 931c52daf6

View file

@ -3,6 +3,9 @@ services:
build:
context: .
dockerfile: docker/Dockerfile.dev
args:
BUILDKIT_INLINE_CACHE: 0
pull_policy: build
container_name: normogen-backend-dev
ports:
- '6800:8000'