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