diff --git a/build/containers/Dockerfile.anomaly-detection-app b/build/containers/Dockerfile.anomaly-detection-app index 87fa2ba2f..0f6e953ff 100644 --- a/build/containers/Dockerfile.anomaly-detection-app +++ b/build/containers/Dockerfile.anomaly-detection-app @@ -9,7 +9,7 @@ COPY ./samples/apps/anomaly-detection-app . RUN echo "Creating container based on ${PLATFORM}/debian:bullseye-slim" && \ apt-get update && \ - apt-get install -y protobuf-compiler libprotoc-dev python3-pip && \ + apt-get install -y protobuf-compiler libprotoc-dev python3-pip python3-sklearn && \ apt-get clean && \ pip3 install -r ./requirements.txt diff --git a/samples/apps/anomaly-detection-app/requirements.txt b/samples/apps/anomaly-detection-app/requirements.txt index 970efe6f7..1f7b9ecdf 100644 --- a/samples/apps/anomaly-detection-app/requirements.txt +++ b/samples/apps/anomaly-detection-app/requirements.txt @@ -1,6 +1,5 @@ grpcio==1.53.0 grpcio-tools==1.53.0 Flask==2.2.5 -numpy==1.21.4 -protobuf==4.21.6 -scikit_learn==1.0.1 \ No newline at end of file +numpy +protobuf==4.21.6 \ No newline at end of file