Spaces:
Paused
Paused
| 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"] |