Is it even possible to install CShell (cshell_install.sh) inside Docker on build stage?
My Dockerfile currently looks like this, SNX has been installed without any issues, but CShell installation gives errors, so is it even possible to install it like this:
FROM scottyhardy/docker-remote-desktop:ubuntu-20.04
# Install SNX required dependencies
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
libpam0g:i386 \
libx11-6:i386 \
libstdc++6:i386 \
libstdc++5:i386 \
libnss3-tools \
xterm \
curl \
default-jdk \
&& rm -rf /var/lib/apt/lists/*
# Install SNX
ADD scripts/snx_install.sh /root
RUN bash -x ./root/snx_install.sh
# Install CShell
#ADD scripts/cshell_install.sh /root
#RUN bash -x ./root/cshell_install.sh -s
Thank you!