Skip to content

Commit

Permalink
try another version of symlink for unkown arch
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Jan 29, 2024
1 parent 8cb6ef4 commit d636b9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ RUN ./install_openjpeg.sh
WORKDIR /root/src/image-decoders
RUN chmod a+x install_openslide.sh
RUN ./install_openslide.sh
run ln -s /usr/local/lib/aarch64-linux-gnu/libopenslide.so.1 /usr/lib/aarch64-linux-gnu/libopenslide.so.0

# temporary fix bc it's looking for .so.0 but has .so.1
WORKDIR /usr/local/lib
RUN ln -s $(ls | grep libopenslide.so.1) libopenslide.so.0

## Install dummy apt packages against competitor versions being installed
WORKDIR /root/src/image-decoders
Expand Down

0 comments on commit d636b9c

Please sign in to comment.