Skip to content

Commit

Permalink
Merge pull request #18 from Chaste/jammy-libexpat1-workaround-fix
Browse files Browse the repository at this point in the history
Add missing apt update statement for libexpat1 workaround
  • Loading branch information
bdevans authored Apr 19, 2024
2 parents 947d10e + d4d011a commit 63bdf53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

# Fix libexpat1 version for jammy: https://github.com/Chaste/Chaste/issues/249
RUN apt-get install -y --allow-downgrades libexpat1=2.4.7-1 libexpat1-dev=2.4.7-1 && \
RUN apt-get update && \
apt-get install -y --allow-downgrades libexpat1=2.4.7-1 libexpat1-dev=2.4.7-1 && \
apt-mark hold libexpat1 libexpat1-dev && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 63bdf53

Please sign in to comment.