Remove unused git dependency from Docker images

This commit is contained in:
Debanjum Singh Solanky 2024-02-14 17:12:53 +05:30
parent e21a8530f3
commit 4007c871ae
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ FROM ubuntu:jammy
LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj
# Install System Dependencies # Install System Dependencies
RUN apt update -y && apt -y install python3-pip git swig RUN apt update -y && apt -y install python3-pip swig
WORKDIR /app WORKDIR /app

View file

@ -4,7 +4,9 @@ FROM nvidia/cuda:12.2.0-devel-ubuntu22.04
LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj
# Install System Dependencies # Install System Dependencies
RUN apt update -y && apt -y install python3-pip git libsqlite3-0 ffmpeg libsm6 libxext6 RUN apt update -y && apt -y install python3-pip libsqlite3-0 ffmpeg libsm6 libxext6
# Install Optional Dependencies
RUN apt install vim -y
WORKDIR /app WORKDIR /app
@ -18,8 +20,6 @@ RUN sed -i "s/dynamic = \\[\"version\"\\]/version = \"$VERSION\"/" pyproject.tom
# Copy Source Code # Copy Source Code
COPY . . COPY . .
RUN apt install vim -y
# Set the PYTHONPATH environment variable in order for it to find the Django app. # Set the PYTHONPATH environment variable in order for it to find the Django app.
ENV PYTHONPATH=/app/src:$PYTHONPATH ENV PYTHONPATH=/app/src:$PYTHONPATH