From 0133b2c29c2754c575cff55afb9c1de2f49cd7af Mon Sep 17 00:00:00 2001 From: skqorrla Date: Thu, 26 Jun 2025 22:54:19 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20Dockerfile=EC=97=90=20libgomp1=20?= =?UTF-8?q?=ED=8C=A8=ED=82=A4=EC=A7=80=20=EC=84=A4=EC=B9=98=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MLOps/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/MLOps/Dockerfile b/MLOps/Dockerfile index 3230988..18585e6 100644 --- a/MLOps/Dockerfile +++ b/MLOps/Dockerfile @@ -7,6 +7,7 @@ COPY MLOps/requirements.txt . RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt RUN pip install -U langchain-chroma +RUN sudo apt-get install -y libgomp1 # app 디렉토리와 ELK 디렉토리 복사 COPY MLOps/app ./app From 3921ce04b530cc799c6cdba239f215af616a3d84 Mon Sep 17 00:00:00 2001 From: skqorrla Date: Thu, 26 Jun 2025 22:58:00 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20Dockerfile=EC=97=90=EC=84=9C=20libgo?= =?UTF-8?q?mp1=20=ED=8C=A8=ED=82=A4=EC=A7=80=20=EC=84=A4=EC=B9=98=20?= =?UTF-8?q?=EB=B0=A9=EB=B2=95=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MLOps/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLOps/Dockerfile b/MLOps/Dockerfile index 18585e6..d35d953 100644 --- a/MLOps/Dockerfile +++ b/MLOps/Dockerfile @@ -7,7 +7,7 @@ COPY MLOps/requirements.txt . RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt RUN pip install -U langchain-chroma -RUN sudo apt-get install -y libgomp1 +RUN apt-get update && apt-get install -y libgomp1 # app 디렉토리와 ELK 디렉토리 복사 COPY MLOps/app ./app