From c28d4cd6aa453b48fc70bc5648165681063d039e Mon Sep 17 00:00:00 2001 From: quandanrepo <45804868+quandanrepo@users.noreply.github.com> Date: Thu, 21 Sep 2023 23:07:05 +0100 Subject: [PATCH] Update Prediction.Dockerfile --- modules/ml-pipeline/src/Prediction.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ml-pipeline/src/Prediction.Dockerfile b/modules/ml-pipeline/src/Prediction.Dockerfile index 09b775b..416571a 100644 --- a/modules/ml-pipeline/src/Prediction.Dockerfile +++ b/modules/ml-pipeline/src/Prediction.Dockerfile @@ -1,6 +1,8 @@ # Dockerfile that can be used to test loading a model to generate a prediction (part of CI/CD flow) FROM python:3.10.12-slim +RUN apt-get install -y libgomp1 + COPY pipeline/requirements/predictions/requirements.txt requirements.txt RUN pip install --upgrade pip