From 6c37581a0824d9246b6dc7ce6aa2cdaf18d53656 Mon Sep 17 00:00:00 2001 From: DrSheppard <60893791+Drsheppard01@users.noreply.github.com> Date: Sun, 27 Oct 2024 04:36:55 +0300 Subject: [PATCH] use appimagetool with support static runtimes It's help non-glibc users use appimage builded by hover --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4131a57..6b1b1d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update \ && apt-get install -y \ curl RUN cd /opt \ - && curl -LO https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage \ + && curl -LO https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage \ && chmod a+x appimagetool-x86_64.AppImage \ && sed 's|AI\x02|\x00\x00\x00|g' -i appimagetool-x86_64.AppImage \ && ./appimagetool-x86_64.AppImage --appimage-extract \