File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ RUN apt-get -y update && \
88 rm -rf /var/cache/apt/archives && \
99 rm -rf /var/lib/apt/lists
1010
11+ # See https://github.com/FluidityProject/fluidity/issues/388
12+ # workaround VTK reading bug with newer versions of libexpat1
13+ # https://bugs.launchpad.net/ubuntu/+source/paraview/+bug/2058415, in particular
14+ # https://bugs.launchpad.net/ubuntu/+source/paraview/+bug/2058415/comments/6
15+ # NOTE: that this downgrade of libexpat1 (which is used in many places by your OS)
16+ # reverts some security patches and is therefore not recommended on your desktop
17+ RUN curl -fsLO http://launchpadlibrarian.net/635321776/libexpat1_2.4.7-1ubuntu0.2_amd64.deb && \
18+ dpkg -i libexpat1_2.4.7-1ubuntu0.2_amd64.deb
19+
20+
1121RUN adduser fluidity sudo
1222RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
1323
You can’t perform that action at this time.
0 commit comments