Spaces:
Paused
Paused
File size: 423 Bytes
712ff91 7f5c289 712ff91 7f5c289 712ff91 7f5c289 712ff91 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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"] |