mirror of
https://github.com/getzep/graphiti.git
synced 2025-06-27 02:00:02 +00:00

* set max tokens * update generic openai client * mypy updates * fix: dockerfile --------- Co-authored-by: paulpaliychuk <pavlo.paliychuk.ca@gmail.com>
43 lines
1.1 KiB
Docker
43 lines
1.1 KiB
Docker
# Build stage
|
|
FROM python:3.12-slim as builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Poetry
|
|
RUN pip install --no-cache-dir poetry
|
|
|
|
# Copy only the files needed for installation
|
|
COPY ./pyproject.toml ./poetry.lock* ./README.md /app/
|
|
COPY ./graphiti_core /app/graphiti_core
|
|
COPY ./server/pyproject.toml ./server/poetry.lock* /app/server/
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
# Install the local package
|
|
RUN poetry build && pip install dist/*.whl
|
|
|
|
# Install server dependencies
|
|
WORKDIR /app/server
|
|
RUN poetry install --no-interaction --no-ansi --only main --no-root
|
|
|
|
FROM python:3.12-slim
|
|
|
|
# Copy only the necessary files from the builder stage
|
|
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
|
|
COPY --from=builder /usr/local/bin /usr/local/bin
|
|
|
|
# Create the app directory and copy server files
|
|
WORKDIR /app
|
|
COPY ./server /app
|
|
|
|
# Set environment variables
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV PORT=8000
|
|
# Command to run the application
|
|
|
|
CMD uvicorn graph_service.main:app --host 0.0.0.0 --port $PORT |