@opencode-cloud/core 10.3.0 → 10.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +1 -1
- package/package.json +1 -1
- package/src/docker/Dockerfile +4 -0
package/Cargo.toml
CHANGED
package/package.json
CHANGED
package/src/docker/Dockerfile
CHANGED
|
@@ -36,6 +36,10 @@ FROM ubuntu:24.04 AS base
|
|
|
36
36
|
|
|
37
37
|
# OCI Labels for image metadata
|
|
38
38
|
LABEL org.opencontainers.image.title="opencode-cloud"
|
|
39
|
+
# NOTE: This exact label format is parsed by scripts/extract-oci-description.py
|
|
40
|
+
# (called from .github/workflows/docker-publish.yml) to populate multi-arch
|
|
41
|
+
# manifest annotations for GHCR. If you change this line (format, quoting, or
|
|
42
|
+
# key), update the extraction logic too.
|
|
39
43
|
LABEL org.opencontainers.image.description="AI-assisted development environment with opencode"
|
|
40
44
|
LABEL org.opencontainers.image.url="https://github.com/pRizz/opencode-cloud"
|
|
41
45
|
LABEL org.opencontainers.image.source="https://github.com/pRizz/opencode-cloud"
|