From 1d190632b7c485e4e310b1939015556c54deb9e0 Mon Sep 17 00:00:00 2001 From: Michel Meyers <1315116+Steltek@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:37:09 +0200 Subject: [PATCH 1/3] Fix missing recents/favourites. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0c5972e..daa6229 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,7 @@ RUN \ apt-get install -y --no-install-recommends \ /tmp/rustdesk.deb && \ echo "**** cleanup ****" && \ + apt-get install -y xdg-user-dirs && \ apt-get autoclean && \ rm -rf \ /root/.cache \ From e3711c0d8738486adae93d42460e7506f6e111be Mon Sep 17 00:00:00 2001 From: Michel Meyers <1315116+Steltek@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:39:34 +0200 Subject: [PATCH 2/3] Fix missing recents/favourites. --- Dockerfile.aarch64 | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a7eea01..f1d6c46 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -27,6 +27,7 @@ RUN \ apt-get install -y --no-install-recommends \ /tmp/rustdesk.deb && \ echo "**** cleanup ****" && \ + apt-get install -y xdg-user-dirs && \ apt-get autoclean && \ rm -rf \ /root/.cache \ From 5c28da8c894cce80b431e7a73304be98145ed444 Mon Sep 17 00:00:00 2001 From: Michel Meyers <1315116+Steltek@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:54:07 +0200 Subject: [PATCH 3/3] Small cleanup. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index daa6229..9a0ac18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,8 +26,8 @@ RUN \ "https://github.com/rustdesk/rustdesk/releases/download/${RUSTDESK_VERSION}/rustdesk-${RUSTDESK_VERSION}-$(uname -m).deb" && \ apt-get install -y --no-install-recommends \ /tmp/rustdesk.deb && \ - echo "**** cleanup ****" && \ apt-get install -y xdg-user-dirs && \ + echo "**** cleanup ****" && \ apt-get autoclean && \ rm -rf \ /root/.cache \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index f1d6c46..5b541b9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -26,8 +26,8 @@ RUN \ "https://github.com/rustdesk/rustdesk/releases/download/${RUSTDESK_VERSION}/rustdesk-${RUSTDESK_VERSION}-$(uname -m).deb" && \ apt-get install -y --no-install-recommends \ /tmp/rustdesk.deb && \ - echo "**** cleanup ****" && \ apt-get install -y xdg-user-dirs && \ + echo "**** cleanup ****" && \ apt-get autoclean && \ rm -rf \ /root/.cache \