Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .CI/build-dep/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM docker.openmodelica.org/build-deps:v1.16.3
# The image the OpenModelica repository builds against, see its .CI/common.groovy
FROM docker.openmodelica.org/build-deps:ubuntu-22.04

RUN apt-get update && apt-get install libxml2 libxslt1.1 libxml2-dev libxslt1-dev
# -y because a base image that does not assume it turns the build into a prompt,
# and python3-pip because the line below needs it and the base may not carry it.
RUN apt-get update && apt-get install -y libxml2 libxslt1.1 libxml2-dev libxslt1-dev python3-pip
RUN pip3 install matplotlib FMPy psycopg2-binary
Loading