From 45db446879f86a3986896c55ebfaab35c49f35e0 Mon Sep 17 00:00:00 2001 From: Ravin Kohli Date: Sat, 25 Dec 2021 17:36:40 +0100 Subject: [PATCH] add missing opencv dependencies --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ef41378fd..ab0c5ec8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ WORKDIR /auto-pytorch # install linux packages RUN apt-get update +# Install missing opencv dependencies +RUN apt-get install ffmpeg libsm6 libxext6 -y # Set the locale # workaround for https://github.com/automl/auto-sklearn/issues/867