-
Notifications
You must be signed in to change notification settings - Fork 157
Adding Docker support to git server. #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
stnwlls
wants to merge
3
commits into
open-webui:main
Choose a base branch
from
stnwlls:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+103
−1
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # Include any files or directories that you don't want to be copied to your | ||
| # container here (e.g., local build artifacts, temporary files, etc.). | ||
| # | ||
| # For more help, visit the .dockerignore file reference guide at | ||
| # https://docs.docker.com/go/build-context-dockerignore/ | ||
|
|
||
| **/.DS_Store | ||
| **/__pycache__ | ||
| **/.venv | ||
| **/.classpath | ||
| **/.dockerignore | ||
| **/.env | ||
| **/.git | ||
| **/.gitignore | ||
| **/.project | ||
| **/.settings | ||
| **/.toolstarget | ||
| **/.vs | ||
| **/.vscode | ||
| **/*.*proj.user | ||
| **/*.dbmdl | ||
| **/*.jfm | ||
| **/bin | ||
| **/charts | ||
| **/docker-compose* | ||
| **/compose.y*ml | ||
| **/Dockerfile* | ||
| **/node_modules | ||
| **/npm-debug.log | ||
| **/obj | ||
| **/secrets.dev.yaml | ||
| **/values.dev.yaml | ||
| LICENSE | ||
| README.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| # syntax=docker/dockerfile:1 | ||
|
|
||
| # Comments are provided throughout this file to help you get started. | ||
| # If you need more help, visit the Dockerfile reference guide at | ||
| # https://docs.docker.com/go/dockerfile-reference/ | ||
|
|
||
| # Want to help us make this template better? Share your feedback here: https://forms.gle/ybq9Krt8jtBL3iCk7 | ||
|
|
||
| ARG PYTHON_VERSION=3.10.12 | ||
| FROM python:${PYTHON_VERSION}-slim as base | ||
|
|
||
| # Prevents Python from writing pyc files. | ||
| ENV PYTHONDONTWRITEBYTECODE=1 | ||
|
|
||
| # Keeps Python from buffering stdout and stderr to avoid situations where | ||
| # the application crashes without emitting any logs due to buffering. | ||
| ENV PYTHONUNBUFFERED=1 | ||
|
|
||
| WORKDIR /app | ||
|
|
||
| # Install Git (Required for the Git Tool) | ||
| RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Create a non-privileged user that the app will run under. | ||
| # See https://docs.docker.com/go/dockerfile-user-best-practices/ | ||
| ARG UID=10001 | ||
| RUN adduser \ | ||
| --disabled-password \ | ||
| --gecos "" \ | ||
| --home "/nonexistent" \ | ||
| --shell "/sbin/nologin" \ | ||
| --no-create-home \ | ||
| --uid "${UID}" \ | ||
| appuser | ||
|
|
||
| # Download dependencies as a separate step to take advantage of Docker's caching. | ||
| # Leverage a cache mount to /root/.cache/pip to speed up subsequent builds. | ||
| # Leverage a bind mount to requirements.txt to avoid having to copy them into | ||
| # into this layer. | ||
| RUN --mount=type=cache,target=/root/.cache/pip \ | ||
| --mount=type=bind,source=requirements.txt,target=requirements.txt \ | ||
| python -m pip install -r requirements.txt | ||
|
|
||
| # Git needs a writable home for global config lookups, or it may crash | ||
| ENV HOME=/tmp | ||
|
|
||
| # Copy the source code into the container. | ||
| COPY . . | ||
|
|
||
| # Ensure the appuser owns the application code | ||
| RUN chown -R appuser:appuser /app | ||
|
|
||
| # Switch to the non-privileged user to run the application. | ||
| USER appuser | ||
|
|
||
| # Expose the port that the application listens on. | ||
| EXPOSE 8000 | ||
|
|
||
| # Run the application. | ||
| CMD uvicorn 'main:app' --host=0.0.0.0 --port=8000 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| services: | ||
| server: | ||
| build: | ||
| context: . | ||
| ports: | ||
| - "8000:8000" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,4 +4,6 @@ pydantic | |
| python-multipart | ||
|
|
||
| pytz | ||
| python-dateutil | ||
| python-dateutil | ||
|
|
||
| GitPython | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python -m pip install -r requirements.txtinstalls third-party dependencies from PyPI without any version pinning or integrity guarantees, so each build may pull arbitrary new code from mutable package versions. If an attacker compromises one of these packages or the package index, they can achieve code execution in the build and runtime environment of this git server. To reduce supply chain risk, pin all external dependencies inrequirements.txtto specific versions (or hashes) and use a reproducible, trusted source for installing them.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a direct copy from the other examples in the repo.