[PR #6] [MERGED] deduplicate and sort package list #7

Closed
opened 2026-02-16 09:24:49 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-agentbox/pull/6
Author: @bowenliang123
Created: 1/15/2026
Status: Merged
Merged: 1/15/2026
Merged by: @Yeuoly

Base: mainHead: sort-deps


📝 Commits (1)

  • d7722fb deduplicate and sort package list

📊 Changes

1 file changed (+18 additions, -0 deletions)

View changed files

📝 agentbox_build/config.py (+18 -0)

📄 Description

  • for a more stable and comparable Dockerfile output , sort and deduplicate the package list of system dependencies and language dependencies.

  • before:

apt-get update && apt-get install -y --no-install-recommends \
    ca-certificates \
    coreutils \
    procps \
    findutils \
    build-essential \
    software-properties-common \
    curl \
    wget \
    gnupg \
    apt-transport-https \
    cmake \
  • after:
apt-get update && apt-get install -y --no-install-recommends \
    apt-transport-https \
    build-essential \
    ca-certificates \
    coreutils \
    curl \
    findutils \
    gnupg \
    procps \
...

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-agentbox/pull/6 **Author:** [@bowenliang123](https://github.com/bowenliang123) **Created:** 1/15/2026 **Status:** ✅ Merged **Merged:** 1/15/2026 **Merged by:** [@Yeuoly](https://github.com/Yeuoly) **Base:** `main` ← **Head:** `sort-deps` --- ### 📝 Commits (1) - [`d7722fb`](https://github.com/langgenius/dify-agentbox/commit/d7722fbc23acaaa72a2904d10170624fe8cbae65) deduplicate and sort package list ### 📊 Changes **1 file changed** (+18 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `agentbox_build/config.py` (+18 -0) </details> ### 📄 Description - for a more stable and comparable Dockerfile output , sort and deduplicate the package list of system dependencies and language dependencies. - before: ``` apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ coreutils \ procps \ findutils \ build-essential \ software-properties-common \ curl \ wget \ gnupg \ apt-transport-https \ cmake \ ``` - after: ``` apt-get update && apt-get install -y --no-install-recommends \ apt-transport-https \ build-essential \ ca-certificates \ coreutils \ curl \ findutils \ gnupg \ procps \ ... ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 09:24:49 -05:00
yindo closed this issue 2026-02-16 09:24:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-agentbox#7