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
|
2023-09-19 00:13:11 +02:00
|
|
|
RUN apt update -y && apt -y install python3-pip git
|
2022-01-24 20:08:55 +01:00
|
|
|
|
2023-10-15 04:39:13 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2023-07-11 08:27:02 +02:00
|
|
|
# Install Application
|
2023-07-11 09:41:05 +02:00
|
|
|
COPY . .
|
|
|
|
RUN sed -i 's/dynamic = \["version"\]/version = "0.0.0"/' pyproject.toml && \
|
|
|
|
pip install --no-cache-dir .
|
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"]
|