fix(encryptid): fix Docker build context for encryptid compose
Build context was set to parent dir (..) which broke all COPY paths. Use context: . with additional_contexts for the encryptid-sdk sibling, matching the pattern in the main docker-compose.yml. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b6bc1a756a
commit
ac156cbbf2
|
|
@ -4,8 +4,10 @@
|
||||||
services:
|
services:
|
||||||
encryptid:
|
encryptid:
|
||||||
build:
|
build:
|
||||||
context: ..
|
context: .
|
||||||
dockerfile: rspace-online/Dockerfile.encryptid
|
dockerfile: Dockerfile.encryptid
|
||||||
|
additional_contexts:
|
||||||
|
encryptid-sdk: ../encryptid-sdk
|
||||||
container_name: encryptid
|
container_name: encryptid
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue