From 5e8df26cfd6e984f831d0cf9ac7f63fa411b341f Mon Sep 17 00:00:00 2001 From: Adrian Pop Date: Thu, 18 Jan 2024 19:40:19 +0100 Subject: [PATCH] do apt-get update before installing libx* FMPy deps --- .CI/build-dep/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.CI/build-dep/Dockerfile b/.CI/build-dep/Dockerfile index f3be3cb..78dbab8 100644 --- a/.CI/build-dep/Dockerfile +++ b/.CI/build-dep/Dockerfile @@ -1,5 +1,4 @@ FROM docker.openmodelica.org/build-deps:v1.16.3 -# this doesn't seem to exist libxml2-dev libxslt1-dev -RUN apt-get install libxml2 libxslt1.1 +RUN apt-get update && apt-get install libxml2 libxslt1.1 libxml2-dev libxslt1-dev RUN pip3 install matplotlib FMPy