Skip to content

Instantly share code, notes, and snippets.

@ted423
Created November 18, 2025 07:39
Show Gist options
  • Select an option

  • Save ted423/af317245e5f1530452fabed2ff24345c to your computer and use it in GitHub Desktop.

Select an option

Save ted423/af317245e5f1530452fabed2ff24345c to your computer and use it in GitHub Desktop.
novnc ubuntu dockerfile
FROM ubuntu:24.04
RUN apt update && apt -y upgrade && apt install -q -y tzdata ca-certificates software-properties-common curl && apt clean -y
RUN sed -i "s|http://|https://|g" /etc/apt/sources.list.d/ubuntu.sources
RUN apt update && apt -y upgrade && \
apt install -q -y tzdata novnc && apt clean -y
USER 1000:1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment