2024-03-30 05:05:43 +00:00
|
|
|
FROM ubuntu:jammy
|
2023-10-26 20:15:31 +00:00
|
|
|
|
2024-07-19 11:40:08 +00:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/khoj-ai/khoj"
|
2023-10-26 20:15:31 +00:00
|
|
|
|
|
|
|
# Install System Dependencies
|
2024-06-22 14:42:41 +00:00
|
|
|
RUN apt update -y && apt -y install python3-pip libsqlite3-0 ffmpeg libsm6 libxext6 swig curl
|
|
|
|
|
2024-07-19 13:41:29 +00:00
|
|
|
# Install Node.js and Yarn
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
|
|
|
|
RUN apt -y install nodejs
|
|
|
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
|
|
|
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
|
|
|
|
RUN apt update && apt -y install yarn
|
2023-10-26 20:15:31 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Install Application
|
|
|
|
COPY pyproject.toml .
|
|
|
|
COPY README.md .
|
2023-12-21 11:37:08 +00:00
|
|
|
ARG VERSION=0.0.0
|
|
|
|
RUN sed -i "s/dynamic = \\[\"version\"\\]/version = \"$VERSION\"/" pyproject.toml && \
|
2024-02-14 09:50:27 +00:00
|
|
|
TMPDIR=/home/cache/ pip install --cache-dir=/home/cache/ -e .[prod]
|
2023-10-26 20:15:31 +00:00
|
|
|
|
|
|
|
# Copy Source Code
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Set the PYTHONPATH environment variable in order for it to find the Django app.
|
2023-11-21 22:40:57 +00:00
|
|
|
ENV PYTHONPATH=/app/src:$PYTHONPATH
|
2023-10-26 20:15:31 +00:00
|
|
|
|
2024-06-22 14:42:41 +00:00
|
|
|
# Go to the directory src/interface/web and export the built Next.js assets
|
|
|
|
WORKDIR /app/src/interface/web
|
2024-07-19 10:36:38 +00:00
|
|
|
RUN bash -c "yarn cache clean && yarn install --verbose && yarn ciexport"
|
2024-06-22 14:42:41 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
2023-10-26 20:15:31 +00: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}
|
|
|
|
ENTRYPOINT [ "gunicorn", "-c", "gunicorn-config.py", "src.khoj.main:app" ]
|