@opencode-cloud/core 4.0.3 → 4.2.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 +2 -2
package/Cargo.toml
CHANGED
package/package.json
CHANGED
package/src/docker/Dockerfile
CHANGED
|
@@ -515,7 +515,7 @@ RUN echo 'export PATH="/home/opencode/.local/bin:$PATH"' >> /home/opencode/.zshr
|
|
|
515
515
|
# Clone the fork and build opencode from source (as non-root user)
|
|
516
516
|
# Pin to specific commit for reproducibility
|
|
517
517
|
# Build opencode from source (BuildKit cache mounts disabled for now)
|
|
518
|
-
RUN OPENCODE_COMMIT="
|
|
518
|
+
RUN OPENCODE_COMMIT="c7fb116c1cf59a76b184f842ed3eb0113d93196b" \
|
|
519
519
|
&& rm -rf /tmp/opencode-repo \
|
|
520
520
|
&& git clone --depth 1 https://github.com/pRizz/opencode.git /tmp/opencode-repo \
|
|
521
521
|
&& cd /tmp/opencode-repo \
|
|
@@ -713,7 +713,7 @@ RUN printf '%s\n' \
|
|
|
713
713
|
# Check that opencode main page responds
|
|
714
714
|
# Works for both tini and systemd modes
|
|
715
715
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
|
|
716
|
-
CMD curl -f http://localhost:3000/ || exit 1
|
|
716
|
+
CMD curl -f -H "Accept: text/html" http://localhost:3000/ || exit 1
|
|
717
717
|
|
|
718
718
|
# -----------------------------------------------------------------------------
|
|
719
719
|
# Version File
|