2022-01-23 14:57:28 -05:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-09-18 15:38:18 -07:00
|
|
|
FROM ubuntu:jammy
|
2024-07-19 17:10:08 +05:30
|
|
|
LABEL homepage="https://khoj.dev"
|
|
|
|
LABEL repository="https://github.com/khoj-ai/khoj"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/khoj-ai/khoj"
|
2024-09-29 03:52:11 -07:00
|
|
|
LABEL org.opencontainers.image.description="Your second brain, containerized for personal, local deployment."
|
2022-01-23 14:57:28 -05:00
|
|
|
|
2022-08-03 23:00:20 +03:00
|
|
|
# Install System Dependencies
|
2024-09-29 03:52:11 -07:00
|
|
|
RUN apt update -y && apt -y install \
|
|
|
|
python3-pip \
|
|
|
|
swig \
|
|
|
|
curl \
|
|
|
|
# Required by RapidOCR
|
|
|
|
libgl1 \
|
|
|
|
libglx-mesa0 \
|
|
|
|
libglib2.0-0 && \
|
|
|
|
# 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/*
|
2024-07-08 18:20:46 +05:30
|
|
|
|
2023-07-10 23:27:02 -07:00
|
|
|
# Install Application
|
2024-06-22 07:42:41 -07:00
|
|
|
WORKDIR /app
|
2023-10-26 09:42:29 -07:00
|
|
|
COPY pyproject.toml .
|
|
|
|
COPY README.md .
|
2023-12-21 17:07:08 +05:30
|
|
|
ARG VERSION=0.0.0
|
|
|
|
RUN sed -i "s/dynamic = \\[\"version\"\\]/version = \"$VERSION\"/" pyproject.toml && \
|
2023-07-11 00:41:05 -07:00
|
|
|
pip install --no-cache-dir .
|
2022-01-23 14:57:28 -05:00
|
|
|
|
2023-10-26 09:42:29 -07:00
|
|
|
# Copy Source Code
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Set the PYTHONPATH environment variable in order for it to find the Django app.
|
2023-11-22 20:35:11 -08:00
|
|
|
ENV PYTHONPATH=/app/src:$PYTHONPATH
|
2023-10-26 09:42:29 -07:00
|
|
|
|
2024-06-22 07:42:41 -07:00
|
|
|
# Go to the directory src/interface/web and export the built Next.js assets
|
|
|
|
WORKDIR /app/src/interface/web
|
2024-09-29 03:52:11 -07:00
|
|
|
RUN bash -c "yarn install --frozen-lockfile --verbose && yarn ciexport && yarn cache clean"
|
2024-06-22 07:42:41 -07:00
|
|
|
WORKDIR /app
|
|
|
|
|
2022-08-03 23:00:20 +03:00
|
|
|
# Run the Application
|
|
|
|
# There are more arguments required for the application to run,
|
2022-01-24 14:08:55 -05:00
|
|
|
# but these should be passed in through the docker-compose.yml file.
|
2022-08-03 23:00:20 +03:00
|
|
|
ARG PORT
|
|
|
|
EXPOSE ${PORT}
|
2023-10-26 09:42:29 -07:00
|
|
|
ENTRYPOINT ["python3", "src/khoj/main.py"]
|