Move bash command in Dockerfile into single line

This commit is contained in:
sabaimran 2023-09-18 15:13:11 -07:00
parent 96a9fa07f0
commit 6df728c445

View file

@ -3,8 +3,7 @@ FROM ubuntu:kinetic
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 && \ RUN apt update -y && apt -y install python3-pip git
apt -y install python3-pip git
# Install Application # Install Application
COPY . . COPY . .