2022-01-23 19:57:28 +00:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-02-19 05:59:03 +00:00
|
|
|
FROM ubuntu:kinetic
|
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
|
2023-02-19 05:59:03 +00:00
|
|
|
RUN apt update -y && \
|
2023-07-12 01:43:44 +00:00
|
|
|
apt -y install python3-pip git
|
2022-01-24 19:08:55 +00:00
|
|
|
|
2023-07-11 06:27:02 +00:00
|
|
|
# Install Application
|
2023-07-11 07:41:05 +00:00
|
|
|
COPY . .
|
|
|
|
RUN sed -i 's/dynamic = \["version"\]/version = "0.0.0"/' pyproject.toml && \
|
|
|
|
pip install --no-cache-dir .
|
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"]
|