2022-01-23 19:57:28 +00:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-02-19 05:59:03 +00:00
|
|
|
FROM ubuntu:kinetic
|
2022-08-03 23:17:01 +00:00
|
|
|
LABEL org.opencontainers.image.source https://github.com/debanjum/khoj
|
2022-01-23 19:57:28 +00:00
|
|
|
|
2022-08-03 20:00:20 +00:00
|
|
|
# Install System Dependencies
|
2023-02-19 05:59:03 +00:00
|
|
|
RUN apt update -y && \
|
|
|
|
apt -y install python3-pip python3-pyqt6
|
2022-01-24 19:08:55 +00:00
|
|
|
|
2022-08-03 20:00:20 +00:00
|
|
|
# Install Python Dependencies
|
2023-02-19 05:59:03 +00:00
|
|
|
RUN pip install --upgrade pip && \
|
|
|
|
pip install --upgrade --pre khoj-assistant
|
2022-01-23 19:57:28 +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}
|
|
|
|
ENTRYPOINT ["khoj"]
|