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:
parent
39f9ff38d0
commit
931c52daf6
1 changed files with 3 additions and 0 deletions
|
|
@ -3,6 +3,9 @@ services:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/Dockerfile.dev
|
dockerfile: docker/Dockerfile.dev
|
||||||
|
args:
|
||||||
|
BUILDKIT_INLINE_CACHE: 0
|
||||||
|
pull_policy: build
|
||||||
container_name: normogen-backend-dev
|
container_name: normogen-backend-dev
|
||||||
ports:
|
ports:
|
||||||
- '6800:8000'
|
- '6800:8000'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue