@prover-coder-ai/docker-git 1.0.49 → 1.0.50
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.
|
@@ -4314,11 +4314,12 @@ RUN npm install -g @anthropic-ai/claude-code@latest
|
|
|
4314
4314
|
RUN claude --version
|
|
4315
4315
|
RUN npm install -g @google/gemini-cli@latest --force
|
|
4316
4316
|
RUN gemini --version`;
|
|
4317
|
+
var openCodeVersion = "1.2.27";
|
|
4317
4318
|
var renderDockerfileOpenCode = () => `# Tooling: OpenCode (binary)
|
|
4318
4319
|
RUN set -eu; \
|
|
4319
4320
|
for attempt in 1 2 3 4 5; do \
|
|
4320
4321
|
if curl -fsSL --retry 5 --retry-all-errors --retry-delay 2 https://opencode.ai/install \
|
|
4321
|
-
| HOME=/usr/local bash -s -- --no-modify-path; then \
|
|
4322
|
+
| HOME=/usr/local bash -s -- --version ${openCodeVersion} --no-modify-path; then \
|
|
4322
4323
|
exit 0; \
|
|
4323
4324
|
fi; \
|
|
4324
4325
|
echo "opencode install attempt \${attempt} failed; retrying..." >&2; \
|
|
@@ -4456,7 +4457,7 @@ RUN mkdir -p ${config.targetDir} \
|
|
|
4456
4457
|
&& if [ "${config.targetDir}" != "/" ]; then chown -R 1000:1000 "${config.targetDir}"; fi
|
|
4457
4458
|
|
|
4458
4459
|
COPY entrypoint.sh /entrypoint.sh
|
|
4459
|
-
RUN sed -i 's
|
|
4460
|
+
RUN sed -i 's/\\r$//' /entrypoint.sh && chmod +x /entrypoint.sh
|
|
4460
4461
|
|
|
4461
4462
|
EXPOSE 22
|
|
4462
4463
|
ENTRYPOINT ["/entrypoint.sh"]`;
|