Skip to content

Commit

Permalink
fix: update mangal to 4.0.6 to prevent chrome crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
oae committed Jan 14, 2023
1 parent 774e75c commit f3d2b23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ WORKDIR /tmp

RUN \
if [ "$(uname -m)" = "x86_64" ] ; then \
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.5/mangal_4.0.5_Linux_x86_64.tar.gz" -o mangal.tar.gz ;\
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.6/mangal_4.0.6_Linux_x86_64.tar.gz" -o mangal.tar.gz ;\
elif [ "$(uname -m)" = "armv6l" ] ; then \
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.5/mangal_4.0.5_Linux_armv6.tar.gz" -o mangal.tar.gz ;\
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.6/mangal_4.0.6_Linux_armv6.tar.gz" -o mangal.tar.gz ;\
elif [ "$(uname -m)" = "i386" ] ; then \
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.5/mangal_4.0.5_Linux_i386.tar.gz" -o mangal.tar.gz ;\
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.6/mangal_4.0.6_Linux_i386.tar.gz" -o mangal.tar.gz ;\
elif [ "$(uname -m)" = "aarch64" ] ; then \
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.5/mangal_4.0.5_Linux_arm64.tar.gz" -o mangal.tar.gz ;\
curl -L "https://github.com/metafates/mangal/releases/download/v4.0.6/mangal_4.0.6_Linux_arm64.tar.gz" -o mangal.tar.gz ;\
fi
RUN tar xf mangal.tar.gz
RUN mv mangal /usr/bin/mangal
Expand Down

0 comments on commit f3d2b23

Please sign in to comment.