2024-09-29 12:52:11 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2024-03-30 06:05:43 +01:00
|
|
|
FROM ubuntu:jammy
|
2024-09-29 12:52:11 +02:00
|
|
|
LABEL homepage="https://khoj.dev"
|
|
|
|
LABEL repository="https://github.com/khoj-ai/khoj"
|
2024-07-19 13:40:08 +02:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/khoj-ai/khoj"
|
2024-09-29 12:52:11 +02:00
|
|
|
LABEL org.opencontainers.image.description="Your second brain, containerized for multi-user, cloud deployment"
|
2023-10-26 22:15:31 +02:00
|
|
|
|
|
|
|
# Install System Dependencies
|
2024-09-29 12:52:11 +02:00
|
|
|
RUN apt update -y && apt -y install \
|
|
|
|
python3-pip \
|
|
|
|
libsqlite3-0 \
|
|
|
|
ffmpeg \
|
|
|
|
libsm6 \
|
|
|
|
libxext6 \
|
|
|
|
swig \
|
|
|
|
curl && \
|
|
|
|
# Required by Next.js Web app
|
|
|
|
curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
|
|
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|
|
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
|
|
|
|
apt update -y && apt -y --no-install-recommends install nodejs yarn && \
|
|
|
|
apt clean && rm -rf /var/lib/apt/lists/*
|
2023-10-26 22:15:31 +02:00
|
|
|
|
|
|
|
# Install Application
|
2024-09-29 12:52:11 +02:00
|
|
|
WORKDIR /app
|
2023-10-26 22:15:31 +02:00
|
|
|
COPY pyproject.toml .
|
|
|
|
COPY README.md .
|
2023-12-21 12:37:08 +01:00
|
|
|
ARG VERSION=0.0.0
|
|
|
|
RUN sed -i "s/dynamic = \\[\"version\"\\]/version = \"$VERSION\"/" pyproject.toml && \
|
2024-09-29 12:52:11 +02:00
|
|
|
pip install --no-cache-dir -e .[prod]
|
2023-10-26 22:15:31 +02:00
|
|
|
|
|
|
|
# Copy Source Code
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Set the PYTHONPATH environment variable in order for it to find the Django app.
|
2023-11-21 23:40:57 +01:00
|
|
|
ENV PYTHONPATH=/app/src:$PYTHONPATH
|
2023-10-26 22:15:31 +02:00
|
|
|
|
2024-06-22 16:42:41 +02:00
|
|
|
# Go to the directory src/interface/web and export the built Next.js assets
|
|
|
|
WORKDIR /app/src/interface/web
|
2024-09-29 12:52:11 +02:00
|
|
|
RUN bash -c "yarn install --frozen-lockfile --verbose && yarn ciexport && yarn cache clean"
|
2024-06-22 16:42:41 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2023-10-26 22:15:31 +02:00
|
|
|
# Run the Application
|
|
|
|
# There are more arguments required for the application to run,
|
|
|
|
# but these should be passed in through the docker-compose.yml file.
|
|
|
|
ARG PORT
|
|
|
|
EXPOSE ${PORT}
|
2024-09-29 12:52:11 +02:00
|
|
|
ENTRYPOINT ["gunicorn", "-c", "gunicorn-config.py", "src.khoj.main:app"]
|