- Generated compose now uses `image: ghcr.io/disinto/{agents,edge}` instead
of `build:` directives; `disinto init --build` restores local-build mode
- Add VOLUME declarations to agents, reproduce, and edge Dockerfiles
- Add CI pipeline (.woodpecker/publish-images.yml) to build and push images
to ghcr.io/disinto on tag events
- Mount projects/, .env, and state/ into agents container for runtime config
- Skip pre-build binary download when compose uses registry images
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
230 B
Docker
7 lines
230 B
Docker
FROM caddy:latest
|
|
RUN apk add --no-cache bash jq curl git docker-cli python3 openssh-client autossh
|
|
COPY entrypoint-edge.sh /usr/local/bin/entrypoint-edge.sh
|
|
|
|
VOLUME /data
|
|
|
|
ENTRYPOINT ["bash", "/usr/local/bin/entrypoint-edge.sh"]
|