Skip to content

Commit 15e7271

Browse files
update ovito to avoid requiring ssl 1.1
1 parent 59e84a7 commit 15e7271

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docker/additional/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,20 @@ USER root
99
# (libgl1-mesa-glx and libfontconfig are for qt/pyside/ovito)
1010
ARG DEBIAN_FRONTEND=noninteractive
1111
RUN apt-get update -qq \
12-
&& apt-get install --no-install-recommends -qqy libgl1 libfontconfig1 \
12+
&& apt-get install --no-install-recommends -qqy libdbus-1-3 libopengl0 libegl1 libxkbcommon0 libfontconfig1 libgl1 \
1313
&& apt-get clean \
1414
&& rm -fr /var/lib/apt/lists/*
1515

16+
17+
1618
#########################################
1719
## OVITO
1820
#########################################
1921
ARG PIP=pip3 --no-cache-dir
20-
RUN ${PIP} install PySide2==5.15.2.1
22+
RUN ${PIP} install PySide6==6.10.0 traits==7.0.2
2123

2224
# Disable dependencies to avoid upgrading numpy unnecessarily
23-
RUN ${PIP} install --no-dependencies ovito==3.6.0
25+
RUN ${PIP} install --no-dependencies ovito==3.14.1
2426

2527
# Revert to user 'openkim'
2628
USER openkim

0 commit comments

Comments
 (0)