fix: use default BOSL2 branch instead of non-existent v2.0.0 tag
The BOSL2 repository has no release tags, causing Docker build to fail when trying to clone --branch v2.0.0. Removed the branch flag to clone the default branch instead. Error: fatal: Remote branch v2.0.0 not found in upstream origin 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -95,7 +95,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
|
||||
RUN mkdir -p /bosl2 && \
|
||||
cd /bosl2 && \
|
||||
git clone --depth 1 --branch v2.0.0 https://github.com/BelfrySCAD/BOSL2.git . && \
|
||||
git clone --depth 1 https://github.com/BelfrySCAD/BOSL2.git . && \
|
||||
# Remove unnecessary files to minimize size
|
||||
rm -rf .git .github tests tutorials examples images *.md CONTRIBUTING* LICENSE* && \
|
||||
# Keep only .scad files and essential directories
|
||||
|
||||
Reference in New Issue
Block a user