From eacdc8d43c6a0d5adfc35b8a6a72e655b44d17f5 Mon Sep 17 00:00:00 2001 From: Yura Lukashik Date: Fri, 27 Oct 2023 20:08:56 +0300 Subject: [PATCH] Search: fix a typo in Dockerfil for GIT installation --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 08532ec..42fcc21 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM python:3.11.3-slim ENV PYTHONUNBUFFERED True # TO FETCH https://github.com/UpMortem/pinecone-python-client FOR TESTING -RUN apt update \ - apt install git +RUN apt update &&\ + apt install -y git WORKDIR /app