2022-01-23 20:57:28 +01:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-09-19 00:38:18 +02:00
|
|
|
FROM ubuntu:jammy
|
2023-06-21 09:13:21 +02:00
|
|
|
LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj
|
2022-01-23 20:57:28 +01:00
|
|
|
|
2022-08-03 22:00:20 +02:00
|
|
|
# Install System Dependencies
|
2024-06-22 16:42:41 +02:00
|
|
|
RUN apt update -y && apt -y install python3-pip swig curl
|
2022-01-24 20:08:55 +01:00
|
|
|
|
2024-06-22 16:42:41 +02:00
|
|
|
# Install Node.js and Yarn
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_22.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-15 04:39:13 +02:00
|
|
|
|
2023-07-11 08:27:02 +02:00
|
|
|
# Install Application
|
2024-06-22 16:42:41 +02:00
|
|
|
WORKDIR /app
|
2023-10-26 18:42:29 +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 && \
|
2023-07-11 09:41:05 +02:00
|
|
|
pip install --no-cache-dir .
|
2022-01-23 20:57:28 +01:00
|
|
|
|
2023-10-26 18:42:29 +02:00
|
|
|
# Copy Source Code
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Set the PYTHONPATH environment variable in order for it to find the Django app.
|
2023-11-23 05:35:11 +01:00
|
|
|
ENV PYTHONPATH=/app/src:$PYTHONPATH
|
2023-10-26 18:42:29 +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
|
|
|
|
RUN bash -c "yarn install && yarn ciexport"
|
|
|
|
WORKDIR /app
|
|
|
|
|
2022-08-03 22:00:20 +02:00
|
|
|
# Run the Application
|
|
|
|
# There are more arguments required for the application to run,
|
2022-01-24 20:08:55 +01:00
|
|
|
# but these should be passed in through the docker-compose.yml file.
|
2022-08-03 22:00:20 +02:00
|
|
|
ARG PORT
|
|
|
|
EXPOSE ${PORT}
|
2023-10-26 18:42:29 +02:00
|
|
|
ENTRYPOINT ["python3", "src/khoj/main.py"]
|