34 lines
1.3 KiB
Docker
Executable File
34 lines
1.3 KiB
Docker
Executable File
FROM ubuntu:24.04
|
|
ENV QTWEBENGINE_DISABLE_SANDBOX=1
|
|
ENV QTWEBENGINE_CHROMIUM_FLAGS="--no-sandbox --disable-gpu"
|
|
ENV DEBIAN_FRONTEND=noninteractive \
|
|
PLAYWRIGHT_BROWSERS_PATH=/ms-playwright \
|
|
VIRTUAL_ENV=/opt/venv \
|
|
PATH=/opt/venv/bin:$PATH
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
openconnect iproute2 iptables ca-certificates \
|
|
python3 python3-pip python3-venv \
|
|
vpnc-scripts curl \
|
|
x11vnc xvfb fluxbox novnc websockify \
|
|
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 \
|
|
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/*
|
|
|
|
RUN python3 -m venv "$VIRTUAL_ENV"
|
|
RUN pip install --no-cache-dir openconnect-sso playwright \
|
|
&& python -m playwright install --with-deps chromium
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
EXPOSE 6901
|
|
ENTRYPOINT ["/entrypoint.sh"]
|