From 6df728c44547b7ca671fd9d4382e67daa9c13c22 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Mon, 18 Sep 2023 15:13:11 -0700 Subject: [PATCH] Move bash command in Dockerfile into single line --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3c4e6de3..a6e93676 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,7 @@ FROM ubuntu:kinetic LABEL org.opencontainers.image.source https://github.com/khoj-ai/khoj # Install System Dependencies -RUN apt update -y && \ - apt -y install python3-pip git +RUN apt update -y && apt -y install python3-pip git # Install Application COPY . .