41 lines
1.5 KiB
Docker
Executable File
41 lines
1.5 KiB
Docker
Executable File
FROM ubuntu:24.04
|
|
ENV DEBIAN_FRONTEND=noninteractive \
|
|
VNC_PASSWORD="vpnpass" \
|
|
NOVNC_PORT=8806
|
|
|
|
# Install base dependencies - same as cistech-tunnel for noVNC
|
|
RUN apt-get update && apt-get install -y \
|
|
iproute2 iptables ca-certificates \
|
|
curl wget openssh-client \
|
|
x11vnc xvfb fluxbox novnc websockify xterm nano oathtool \
|
|
xauth libnss3 libatk1.0-0 libatk-bridge2.0-0 \
|
|
libx11-6 libx11-xcb1 libxcomposite1 libxrandr2 libgbm1 libxdamage1 \
|
|
libpango-1.0-0 fonts-liberation \
|
|
libegl1 libgl1 libopengl0 libdbus-1-3 libglib2.0-0 \
|
|
libxkbcommon0 libxkbcommon-x11-0 \
|
|
libxcb1 libxcb-cursor0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render0 libxcb-render-util0 libxcb-shm0 libxcb-xfixes0 libxcb-xinerama0 libxcb-randr0 libxcb-glx0 \
|
|
xdotool xclip \
|
|
libwebkit2gtk-4.1-0 libgtk-3-0 libxml2 libxss1 libcairo2 libgdk-pixbuf2.0-0 \
|
|
sudo && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt-get update && (apt-get install -y libasound2t64 || apt-get install -y libasound2) && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Cisco Secure Client
|
|
COPY cisco-secure-client-linux64-5.1.11.388-core-vpn-webdeploy-k9.sh /tmp/cisco-install.sh
|
|
RUN chmod +x /tmp/cisco-install.sh && \
|
|
/tmp/cisco-install.sh && \
|
|
rm /tmp/cisco-install.sh
|
|
|
|
# Copy hostscan files
|
|
COPY hostscan /root/.cisco/hostscan
|
|
RUN chmod -R 755 /root/.cisco/hostscan
|
|
|
|
# Copy VPN automation script
|
|
COPY vpn-sso.sh /root/vpn-sso.sh
|
|
RUN chmod +x /root/vpn-sso.sh
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
EXPOSE 8806
|
|
ENTRYPOINT ["/entrypoint.sh"]
|