[PR #3912] [CLOSED] Build: Git installation in Docker container #44406

Closed
opened 2026-04-29 18:30:40 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/3912
Author: @dinesh-bandaru
Created: 7/16/2024
Status: Closed

Base: devHead: Docker_update_dinesh


📝 Commits (10+)

📊 Changes

270 files changed (+70358 additions, -2 deletions)

View changed files

📝 Dockerfile (+2 -2)
README-better-layout.md (+180 -0)
active.md (+100 -0)
index.html (+152 -0)
list/README.md (+25 -0)
list/index.html (+36 -0)
location/README.md (+30 -0)
location/index.html (+29 -0)
location/setup/README.md (+152 -0)
location/setup/index.html (+29 -0)
src-merged/app.css (+156 -0)
src-merged/app.d.ts (+12 -0)
src-merged/app.html (+221 -0)
src-merged/index.html (+45 -0)
src-merged/lib/apis/audio/index.ts (+133 -0)
src-merged/lib/apis/auths/index.ts (+525 -0)
src-merged/lib/apis/chats/index.ts (+757 -0)
src-merged/lib/apis/configs/index.ts (+119 -0)
src-merged/lib/apis/documents/index.ts (+232 -0)
src-merged/lib/apis/files/index.ts (+183 -0)

...and 80 more files

📄 Description

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.

Before submitting, make sure you've checked the following:

  • Target branch: Please verify that the pull request targets the dev branch.
  • Description: Provide a concise description of the changes made in this pull request.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Have you written and run sufficient tests for validating the changes?
  • Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
  • Prefix: To cleary categorize this pull request, prefix the pull request title, using one of the following:
    • BREAKING CHANGE: Significant changes that may affect compatibility
    • build: Changes that affect the build system or external dependencies
    • ci: Changes to our continuous integration processes or workflows
    • chore: Refactor, cleanup, or other non-functional code changes
    • docs: Documentation update or addition
    • feat: Introduces a new feature or enhancement to the codebase
    • fix: Bug fix or error correction
    • i18n: Internationalization or localization changes
    • perf: Performance improvement
    • refactor: Code restructuring for better maintainability, readability, or scalability
    • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
    • test: Adding missing tests or correcting existing tests
    • WIP: Work in progress, a temporary label for incomplete or ongoing work

Changelog Entry

Description

  • Made changes to the Dockerfile to be able to install git while working in Docker container

🔄 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/open-webui/open-webui/pull/3912 **Author:** [@dinesh-bandaru](https://github.com/dinesh-bandaru) **Created:** 7/16/2024 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `Docker_update_dinesh` --- ### 📝 Commits (10+) - [`c0e8fbb`](https://github.com/open-webui/open-webui/commit/c0e8fbb8abc0fbbf51fea78e01ec8d82ff59c808) Add list - [`5a4d4b0`](https://github.com/open-webui/open-webui/commit/5a4d4b0553abee02bc398c85e1327ec8439f742b) Update projects.md - [`ec9b9ba`](https://github.com/open-webui/open-webui/commit/ec9b9ba4c806dac9f893afcf0ea7cecc07747eea) Rename link - [`156fedf`](https://github.com/open-webui/open-webui/commit/156fedf09dc61811870b86517bf0cb572c7a7acc) Update projects.md - [`2d19fea`](https://github.com/open-webui/open-webui/commit/2d19fea43d2f3a5d1cf259eb8a82725c45e88ef6) Update projects.md - [`6e728f9`](https://github.com/open-webui/open-webui/commit/6e728f92fa7b7fec583754e779615f8ae2b60708) Update projects.md - [`86398bb`](https://github.com/open-webui/open-webui/commit/86398bb84549ec8df84ee6323a5370e7175d0755) typo - [`fd5832d`](https://github.com/open-webui/open-webui/commit/fd5832d517de1ec2ce139ac55e39bcc483fe4460) Update projects.md - [`4a0402e`](https://github.com/open-webui/open-webui/commit/4a0402eba5b129ddd6ad84c630b472ab6f6ad119) Update projects.md - [`485e4e7`](https://github.com/open-webui/open-webui/commit/485e4e71b8c438bc8736f07d779bc0e9f7cb3003) Redirect for links ### 📊 Changes **270 files changed** (+70358 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+2 -2) ➕ `README-better-layout.md` (+180 -0) ➕ `active.md` (+100 -0) ➕ `index.html` (+152 -0) ➕ `list/README.md` (+25 -0) ➕ `list/index.html` (+36 -0) ➕ `location/README.md` (+30 -0) ➕ `location/index.html` (+29 -0) ➕ `location/setup/README.md` (+152 -0) ➕ `location/setup/index.html` (+29 -0) ➕ `src-merged/app.css` (+156 -0) ➕ `src-merged/app.d.ts` (+12 -0) ➕ `src-merged/app.html` (+221 -0) ➕ `src-merged/index.html` (+45 -0) ➕ `src-merged/lib/apis/audio/index.ts` (+133 -0) ➕ `src-merged/lib/apis/auths/index.ts` (+525 -0) ➕ `src-merged/lib/apis/chats/index.ts` (+757 -0) ➕ `src-merged/lib/apis/configs/index.ts` (+119 -0) ➕ `src-merged/lib/apis/documents/index.ts` (+232 -0) ➕ `src-merged/lib/apis/files/index.ts` (+183 -0) _...and 80 more files_ </details> ### 📄 Description # Pull Request Checklist ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request. **Before submitting, make sure you've checked the following:** - [x] **Target branch:** Please verify that the pull request targets the `dev` branch. - [x] **Description:** Provide a concise description of the changes made in this pull request. - [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources? - [x] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [ ] **Testing:** Have you written and run sufficient tests for validating the changes? - [x] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards? - [x] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following: - **BREAKING CHANGE**: Significant changes that may affect compatibility - **build**: Changes that affect the build system or external dependencies - **ci**: Changes to our continuous integration processes or workflows - **chore**: Refactor, cleanup, or other non-functional code changes - **docs**: Documentation update or addition - **feat**: Introduces a new feature or enhancement to the codebase - **fix**: Bug fix or error correction - **i18n**: Internationalization or localization changes - **perf**: Performance improvement - **refactor**: Code restructuring for better maintainability, readability, or scalability - **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.) - **test**: Adding missing tests or correcting existing tests - **WIP**: Work in progress, a temporary label for incomplete or ongoing work # Changelog Entry ### Description - Made changes to the Dockerfile to be able to install git while working in Docker container --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-29 18:30:40 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#44406