From be359b2bfc1c3be65047bc10c1fb4a7b30a833fb Mon Sep 17 00:00:00 2001 From: Michael Duong Date: Fri, 22 Sep 2023 13:50:10 +0000 Subject: [PATCH] change docker install --- modules/ml-pipeline/src/Prediction.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ml-pipeline/src/Prediction.Dockerfile b/modules/ml-pipeline/src/Prediction.Dockerfile index 416571a..54a7059 100644 --- a/modules/ml-pipeline/src/Prediction.Dockerfile +++ b/modules/ml-pipeline/src/Prediction.Dockerfile @@ -1,7 +1,7 @@ # 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 +RUN apt-get update && apt-get install -y libgomp1 COPY pipeline/requirements/predictions/requirements.txt requirements.txt