2022-01-23 20:57:28 +01:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-02-19 06:59:03 +01:00
|
|
|
FROM ubuntu:kinetic
|
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
|
2023-02-19 06:59:03 +01:00
|
|
|
RUN apt update -y && \
|
2023-06-27 05:16:07 +02:00
|
|
|
apt -y install python3-pip python3-pyqt6 git
|
2022-01-24 20:08:55 +01:00
|
|
|
|
2023-07-11 08:27:02 +02:00
|
|
|
# Install Application
|
|
|
|
RUN pip install --no-cache-dir git+https://github.com/khoj-ai/khoj.git
|
2022-01-23 20:57:28 +01:00
|
|
|
|
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}
|
|
|
|
ENTRYPOINT ["khoj"]
|