forked from vital987/chrome-novnc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
vital987
committed
May 14, 2022
1 parent
b21105d
commit 609b5e2
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:22.04 | ||
|
||
LABEL AboutImage "Ubuntu20.04_Chromium_NoVNC" | ||
LABEL AboutImage "Ubuntu22.04_Chromium_NoVNC" | ||
|
||
LABEL Maintainer "Apoorv Vyavahare <[email protected]>" | ||
|
||
|
@@ -32,7 +32,7 @@ SHELL ["/bin/bash", "-c"] | |
RUN apt-get update && \ | ||
apt-get install -y tzdata ca-certificates supervisor curl wget python3 python3-pip sed unzip xvfb x11vnc websockify openbox libnss3 libgbm-dev libasound2 && \ | ||
#Chromium | ||
wget https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/938008/chrome-linux.zip -P /tmp && \ | ||
wget https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/1003039/chrome-linux.zip -P /tmp && \ | ||
unzip /tmp/chrome-linux.zip -d /opt && \ | ||
#noVNC | ||
openssl req -new -newkey rsa:4096 -days 36500 -nodes -x509 -subj "/C=IN/ST=Maharastra/L=Private/O=Dis/CN=www.google.com" -keyout /etc/ssl/novnc.key -out /etc/ssl/novnc.cert && \ | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
[program:Self-ping] | ||
command=python3 /config/self-ping.py | ||
stderr_logfile=/var/log/selfping.err.log | ||
exitcodes=0 | ||
startsecs=0 | ||
priority=6 |