docker-baseimage-rdesktop
docker-baseimage-rdesktop copied to clipboard
[FEAT] Add proot support like webtop version
Is this a new feature request?
- [X] I have searched the existing issues
Wanted change
Add proot command to this base image
Reason for change
Merge similar image (docker-baseimage-kasmvnc and docker-baseimage-rdesktop) by adding proot to allow users to add their own programs and persistance
Proposed code change
Add something like this onto the Dockerfile :
echo "**** proot-apps ****" && \
mkdir /proot-apps/ && \
PAPPS_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/proot-apps/releases/latest" \
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
curl -L https://github.com/linuxserver/proot-apps/releases/download/${PAPPS_RELEASE}/proot-apps-x86_64.tar.gz \
| tar -xzf - -C /proot-apps/ && \
echo "${PAPPS_RELEASE}" > /proot-apps/pversion && \
Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.
https://github.com/linuxserver/docker-rdesktop
Great! Thank you so much 👍. It works perfectly!