mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-08 09:14:10 +01:00
91eb953f62
New build option with latest stable libjpeg-turbo library
20 lines
604 B
Plaintext
20 lines
604 B
Plaintext
FROM debian:buster-slim
|
|
|
|
ARG KASMVNC_PACKAGE_DIR
|
|
COPY $KASMVNC_PACKAGE_DIR/kasmvncserver_*.deb /tmp/
|
|
RUN rm -f /tmp/kasmvncserver_*+*.deb; apt-get update && dpkg -i /tmp/*.deb; apt-get -yf install
|
|
RUN apt-get update && apt-get -y install xterm
|
|
|
|
COPY startup/deb/kasmvncserver-easy-start /usr/local/bin
|
|
|
|
RUN useradd -m foo
|
|
|
|
USER foo:ssl-cert
|
|
|
|
RUN mkdir ~/.vnc && echo '/usr/bin/xterm &' >> ~/.vnc/xstartup && \
|
|
chmod +x ~/.vnc/xstartup
|
|
|
|
ENTRYPOINT bash -c "echo -e \"$VNC_PW\n$VNC_PW\n\" | \
|
|
kasmvncpasswd -w -u $VNC_USER $HOME/.kasmpasswd && \
|
|
kasmvncserver-easy-start && tail -f $HOME/.vnc/*.log"
|