os / Dockerfile
superchatai's picture
Update Dockerfile (#1)
7f5c289 verified
raw
history blame contribute delete
423 Bytes
FROM kasmweb/chromium:1.18.0-rolling-daily
# Switch to root to install extra packages
USER root
RUN apt-get update && apt-get install -y \
curl nano \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Switch back to kasm_user so we don't run apps as root
USER 1000
# Expose the noVNC / VNC port
EXPOSE 6901
# Start the Kasm services
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]