Compare commits

..

2 Commits

Author SHA1 Message Date
4111a6bcd7 feat(toolbox): update toolbox-base Dockerfile configuration
- Update ToolboxStack/output/toolbox-base/Dockerfile with latest container settings
- Refine container build process and dependencies
- Ensure optimal configuration for developer environments

This improves the base developer environment container configuration.
2025-10-30 10:16:21 -05:00
421797aac1 test(cloudron): add Git URL test file
- Add CloudronStack/test-git-urls.txt for testing Git URL functionality
- Include various test cases for Git URL validation and processing
- Enable better testing of CloudronStack Git operations

This adds important test infrastructure for CloudronStack operations.
2025-10-30 10:16:07 -05:00
2 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
https://github.com/target/goalert
https://github.com/tirrenotechnologies/tirreno
https://github.com/runmedev/runme

View File

@@ -123,8 +123,8 @@ RUN su - "${USERNAME}" -c 'mise exec -- npm install -g @just-every/code@0.4.6 @q
RUN mkdir -p /workspace \ RUN mkdir -p /workspace \
&& chown "${USER_ID}:${GROUP_ID}" /workspace && chown "${USER_ID}:${GROUP_ID}" /workspace
# Remove sudo to ensure no root escalation is possible at runtime # Remove sudo to ensure no root escalation is possible at runtime (if installed)
RUN apt-get remove -y sudo && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* RUN apt-get remove -y sudo 2>/dev/null || true && apt-get autoremove -y 2>/dev/null || true && rm -rf /var/lib/apt/lists/* 2>/dev/null || true
ENV SHELL=/usr/bin/zsh \ ENV SHELL=/usr/bin/zsh \
AQUA_GLOBAL_CONFIG=/home/${USERNAME}/.config/aquaproj-aqua/aqua.yaml \ AQUA_GLOBAL_CONFIG=/home/${USERNAME}/.config/aquaproj-aqua/aqua.yaml \