mirror of
https://github.com/zebrajr/privateGPT.git
synced 2025-12-06 00:19:52 +01:00
* `UID` and `GID` build arguments for `worker` user * `POETRY_EXTRAS` build argument with default values * Copy `Makefile` for `make ingest` command * Do NOT copy markdown files I doubt anyone reads a markdown file within a Docker image * Fix PYTHONPATH value * Set home directory to `/home/worker` when creating user * Combine `ENV` instructions together * Define environment variables with their defaults - For documentation purposes - Reflect defaults set in settings-docker.yml * `PGPT_EMBEDDING_MODE` to define embedding mode * Remove ineffective `python3 -m pipx ensurepath` * Use `&&` instead of `;` to chain commands to detect failure better * Add `--no-root` flag to poetry install commands * Set PGPT_PROFILES to docker * chore: remove envs * chore: update to use ollama in docker-compose * chore: don't copy makefile * chore: don't copy fern * fix: tiktoken cache * fix: docker compose port * fix: ffmpy dependency (#2020) * fix: ffmpy dependency * fix: block ffmpy to commit sha * feat(llm): autopull ollama models (#2019) * chore: update ollama (llm) * feat: allow to autopull ollama models * fix: mypy * chore: install always ollama client * refactor: check connection and pull ollama method to utils * docs: update ollama config with autopulling info ... * chore: autopull ollama models * chore: add GID/UID comment ... --------- Co-authored-by: Javier Martinez <javiermartinezalvarez98@gmail.com>
51 lines
1.5 KiB
Docker
51 lines
1.5 KiB
Docker
FROM python:3.11.6-slim-bookworm as base
|
|
|
|
# Install poetry
|
|
RUN pip install pipx
|
|
RUN pipx install poetry
|
|
ENV PATH="/root/.local/bin:$PATH"
|
|
ENV PATH=".venv/bin/:$PATH"
|
|
|
|
# https://python-poetry.org/docs/configuration/#virtualenvsin-project
|
|
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
|
|
|
|
FROM base as dependencies
|
|
WORKDIR /home/worker/app
|
|
COPY pyproject.toml poetry.lock ./
|
|
|
|
ARG POETRY_EXTRAS="ui vector-stores-qdrant llms-ollama embeddings-ollama"
|
|
RUN poetry install --no-root --extras "${POETRY_EXTRAS}"
|
|
|
|
FROM base as app
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV PORT=8080
|
|
ENV APP_ENV=prod
|
|
ENV PYTHONPATH="$PYTHONPATH:/home/worker/app/private_gpt/"
|
|
EXPOSE 8080
|
|
|
|
# Prepare a non-root user
|
|
# More info about how to configure UIDs and GIDs in Docker:
|
|
# https://github.com/systemd/systemd/blob/main/docs/UIDS-GIDS.md
|
|
|
|
# Define the User ID (UID) for the non-root user
|
|
# UID 100 is chosen to avoid conflicts with existing system users
|
|
ARG UID=100
|
|
|
|
# Define the Group ID (GID) for the non-root user
|
|
# GID 65534 is often used for the 'nogroup' or 'nobody' group
|
|
ARG GID=65534
|
|
|
|
RUN adduser --system --gid ${GID} --uid ${UID} --home /home/worker worker
|
|
WORKDIR /home/worker/app
|
|
|
|
RUN chown worker /home/worker/app
|
|
RUN mkdir local_data && chown worker local_data
|
|
RUN mkdir models && chown worker models
|
|
COPY --chown=worker --from=dependencies /home/worker/app/.venv/ .venv
|
|
COPY --chown=worker private_gpt/ private_gpt
|
|
COPY --chown=worker *.yaml .
|
|
COPY --chown=worker scripts/ scripts
|
|
|
|
USER worker
|
|
ENTRYPOINT python -m private_gpt
|