From e6b5d5900bf0caba89ff6f9b90dac2d03e726c7d Mon Sep 17 00:00:00 2001 From: Michael Duong Date: Mon, 18 Sep 2023 20:09:16 +0100 Subject: [PATCH] fixed docker --- 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 096b51b..ada1b63 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 -COPY src/requirements/predictions/requirements.txt requirements.txt +COPY pipeline/requirements/predictions/requirements.txt requirements.txt RUN pip install --upgrade pip RUN pip install -r requirements.txt