Created
November 18, 2025 07:39
-
-
Save ted423/af317245e5f1530452fabed2ff24345c to your computer and use it in GitHub Desktop.
novnc ubuntu dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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